import type { SysFileSystem } from "../../types/sthis.js"; type FsPromises = typeof import("node:fs/promises"); export declare class NodeFileSystem implements SysFileSystem { fs?: FsPromises; start(): Promise; mkdir(path: string, options?: { recursive: boolean; }): Promise; readdir(path: string, options?: unknown): Promise; rm(path: string, options?: { recursive: boolean; }): Promise; copyFile(source: string, destination: string): Promise; readfile(path: string, options?: { encoding: BufferEncoding; flag?: string; }): Promise; stat(path: string): Promise; unlink(path: string): Promise; writefile(path: string, data: Uint8Array | string): Promise; } export {};