export interface StorageDriver { upload(path: string, data: Buffer): Promise; download(path: string): Promise; delete(path: string): Promise; }