/// import fs, { Dirent } from 'fs'; export { chmodSync, mkdirSync, renameSync, rmdirSync, rmSync, statSync, lstatSync, unlinkSync, } from 'fs'; export declare const readdirSync: (path: fs.PathLike) => Dirent[]; export declare const promises: { chmod: (path: fs.PathLike, mode: fs.Mode) => Promise; mkdir: (path: fs.PathLike, options?: fs.Mode | (fs.MakeDirectoryOptions & { recursive?: boolean | null; }) | undefined | null) => Promise; readdir: (path: fs.PathLike) => Promise; rename: (oldPath: fs.PathLike, newPath: fs.PathLike) => Promise; rm: (path: fs.PathLike, options: fs.RmOptions) => Promise; rmdir: (path: fs.PathLike) => Promise; stat: (path: fs.PathLike) => Promise; lstat: (path: fs.PathLike) => Promise; unlink: (path: fs.PathLike) => Promise; }; //# sourceMappingURL=fs.d.ts.map