/// import { PathLike } from 'fs'; export declare function readFile(path: PathLike): Promise; export declare function readFile(path: PathLike, options: { encoding: BufferEncoding; }): Promise; export declare const writeFile: (path: PathLike, content: string | Buffer) => Promise; export declare const readdir: (path: string) => Promise; export declare const del: (path: PathLike) => Promise; export declare const clean: (path: string) => Promise<[stdout: string, stderr: string]>; export declare const move: (oldPath: PathLike, newPath: PathLike) => Promise; export declare const copy: (oldPath: PathLike, newPath: PathLike) => Promise; export declare function ensurePathExists(filePath: string): string; //# sourceMappingURL=fs.d.ts.map