export declare class LocalStorageAdapter { private readonly basePath; constructor(basePath: string); private filePath; upload(fileId: string, data: Blob | ArrayBuffer, contentType: string): Promise; get(fileId: string): Promise; delete(fileId: string): Promise; exists(fileId: string): Promise; stat(key: string): Promise<{ size: number; contentType: string; } | null>; list(prefix: string): Promise; } //# sourceMappingURL=local.d.ts.map