export declare const fileExists: (path: string) => Promise; export declare const dirExists: (path: string) => Promise; export declare const readDir: (path: string) => Promise; export declare const rmFile: (path: string) => Promise; export declare const writeFile: (path: string, content: string) => Promise; export declare const rmdir: (path: string) => Promise; export declare const mkdir: (path: string) => Promise; export interface CopyFileOpts { transform?: (source: string) => string | Promise; } export declare const copyFile: (src: string, dest: string, { transform }?: CopyFileOpts) => Promise; export declare const copyDir: (src: string, dest: string) => Promise;