import { StorageService } from './types'; export declare class LocalStorageService implements StorageService { private basePath; constructor(basePath?: string); uploadFile(filePath: string, key: string): Promise; downloadFile(key: string): Promise; deleteFile(key: string): Promise; getFileUrl(key: string): Promise; cleanup(): Promise; } //# sourceMappingURL=local.d.ts.map