import { LocalFileSystem } from "../types"; export declare class NodeLocalFileSystem implements LocalFileSystem { createDirectory(directory: string): Promise; getFileSize(filePath: string): Promise; fileExists(filePath: string): Promise; deleteFile(filePath: string): Promise; protected pathIsAccessible(path: string): Promise; } //# sourceMappingURL=NodeLocalFileSystem.d.ts.map