export declare const readFile: (filename: any, encoding?: string) => Promise; export declare const writeFile: (path: any, data: any, encoding?: string) => Promise; export declare const fileRemove: (name: any) => Promise; export declare const fileExists: (name: any) => any; export declare const listDir: (path: any) => Promise; export declare const rename: (oldPath: any, newPath: any, renameFileIfExist?: boolean) => Promise; export declare const mkDir: (path: any) => Promise;