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