import type { BlobDriver } from './types';
export interface VercelDriverOptions {
    token?: string;
    access?: 'public' | 'private';
}
export declare function createDriver(options?: VercelDriverOptions): BlobDriver<VercelDriverOptions>;
