export interface UploadResult { downloadUrl: string; fullPath: string; } export interface StorageFile { name: string; downloadUrl: string; } export interface StorageProvider { uploadFile(localPath: string, remotePath: string): Promise; getDownloadUrl(remotePath: string): Promise; listFiles(directoryPath: string): Promise; } //# sourceMappingURL=storage.d.ts.map