export declare const CLOUD_STORAGE_PROVIDERS: readonly ["aws", "cloudflare", "do_space"]; export type CloudStorageProvider = (typeof CLOUD_STORAGE_PROVIDERS)[number]; export interface ICloudStorage { provider: CloudStorageProvider; region: string; bucket: string; accessKey: string; secretKey: string; endpoint: string; baseUrl?: string; basePath?: string; } export interface StorageUploadOptions { storage?: ICloudStorage; debug?: boolean; }