export declare function readFile({ path }: { path: string; }): Promise; /** * Write text file with UTF-8 encoding. The destination directory is created * first recursively. */ export declare function writeFile({ path, contents, }: { path: string; contents: string; }): Promise; export declare function copyFile({ from, to }: { from: string; to: string; }): Promise; export declare function removeFile({ path }: { path: string; }): Promise; export declare function isAccessibleFile({ path, mode, }: { path: string; mode: number; }): Promise; export declare function isReadableFile({ path }: { path: string; }): Promise; export declare function isWritableFile({ path }: { path: string; }): Promise; export declare function isReadableAndWritableFile({ path }: { path: string; }): Promise; //# sourceMappingURL=file.d.ts.map