interface IFilesystem { exists(path: string): Promise; read(path: string): Promise; write(path: string, content: string): Promise; delete(path: string): Promise; } export declare class NetworkFilesystem implements IFilesystem { private root; constructor(root?: string); delete(path: string): Promise; exists(path: string): Promise; read(path: string): Promise; readText(path: string): Promise; write(path: string, content: string): Promise; } export {};