export interface StorageDriver { upload(filePath: string, file: Buffer): Promise; read(filePath: string): Promise; exists(filePath: string): Promise; getUrl(filePath: string): string; getSignedUrl(filePath: string, expireIn: number): Promise; delete(filePath: string): Promise; getDriver(): any; getDriverName(): string; getConfig(): Record; }