import type { BlobDriver } from './types';
export interface FSDriverOptions {
    dir: string;
}
export declare function createDriver(options: FSDriverOptions): BlobDriver<FSDriverOptions>;
