export declare function resolveBasePath(basePath: string): string; export declare function resolveStoragePath(basePath: string, key: string, allowEmpty?: boolean, operation?: string): string; export declare function dirname(fullPath: string): string; export declare function ensureDir(dir: string): Promise; export declare function read(fullPath: string): Promise; export declare function writeAtomic(fullPath: string, data: ArrayBuffer | Uint8Array): Promise; export declare function append(fullPath: string, data: ArrayBuffer | Uint8Array): Promise; export declare function deleteFile(fullPath: string): Promise; export declare function exists(fullPath: string): Promise; export declare function list(basePath: string, searchPath: string): Promise; export declare function clear(basePath: string): Promise; export declare function size(fullPath: string): Promise; export declare function stream(fullPath: string): ReadableStream; //# sourceMappingURL=nodeFsRuntime.d.ts.map