interface FileInfo { success: boolean; hash?: string; size?: number; created?: number; error?: Error | undefined; } export declare class File { static info(filePath: string): Promise; } export {};