export interface IStorageDriver {
  upload(file: Buffer, path: string, mimeType?: string): Promise<string>;

  delete(path:string): Promise<void>;

  getUrl(path: string): string;

  getAvailableImages(): Promise<{ Key?: string }[]>;
}
