import { type FileSystem, type ProgressCallback, type ReadFileSystem, type ReadSource, type Writer } from '../lib';
/**
 * ReadFileSystem for reading from the local filesystem using Node.js fs module.
 */
declare class NodeReadFileSystem implements ReadFileSystem {
    createSource(filename: string, progress?: ProgressCallback): Promise<ReadSource>;
}
/**
 * FileSystem for writing to the local filesystem using Node.js fs module.
 */
declare class NodeFileSystem implements FileSystem {
    createWriter(filename: string): Promise<Writer>;
    mkdir(path: string): Promise<void>;
}
export { NodeReadFileSystem, NodeFileSystem };
