export interface FileRead { filename: string; contents: string; } export declare function readFile(file: File | string): Promise;