import fs from 'node:fs'; export declare const createReadStream: (filePath: string) => fs.ReadStream; export declare const createWriteStream: (filePath: string) => fs.WriteStream; export declare const existsSync: (filePath: string) => boolean; export declare const copyFile: (filePath1: string, filePath2: string) => Promise; export declare const rename: (filePath1: string, filePath2: string) => Promise; export declare const mkdir: (filePath: string, options?: { recursive?: boolean | undefined; }) => Promise; export declare const readFile: (filePath: string, options: { encoding: "utf8"; }) => Promise; export declare const writeFile: (filePath: string, content: string) => Promise; export declare const appendFile: (filePath: string, content: string) => Promise; export declare const stat: (filePath: string) => Promise; export declare const unlink: (filePath: string) => Promise; export declare const readdir: (filePath: string, options?: { encoding: "utf8"; recursive: boolean; }) => Promise;