export declare function writeFile(filepath: string, content: string): Promise; export declare function readFile(filepath: string): Promise; export declare function unlinkFile(filePath: string, cb?: (err?: Error) => any): void; export declare function mkdirp(filePath: string): Promise;