export declare const fs: () => { opendir: typeof import("fs/promises").opendir; readdir: typeof import("fs/promises").readdir; readFile: typeof import("fs/promises").readFile; writeFile: typeof import("fs/promises").writeFile; dirname: (path: string) => string; join: (...paths: string[]) => string; resolve: (...paths: string[]) => string; sep: "/" | "\\"; relative: (from: string, to: string) => string; isAbsolute: (path: string) => boolean; cwd: () => string; createReadStream: typeof import("fs").createReadStream; realpathSync: typeof import("fs").realpathSync; createServer: typeof import("http").createServer; networkInterfaces: typeof import("os").networkInterfaces; execFile: typeof import("child_process").execFile; mkdirSync: typeof import("fs").mkdirSync; pathToFileURL: typeof import("url").pathToFileURL; };