import type { StorageProvider } from './interface.js'; export declare class LocalFileStorage implements StorageProvider { private rootDir; name: string; constructor(rootDir: string); private getPath; get(key: string): Promise; set(key: string, value: T): Promise; delete(key: string): Promise; list(prefix?: string): Promise; } //# sourceMappingURL=local.d.ts.map