type ThirdwebStorageOptions<T extends UploadOptions> = { clientId?: string; downloader?: IStorageDownloader; gatewayUrls?: GatewayUrls | Array<string>; secretKey?: string; uploader?: IStorageUploader<T>; uploadServerUrl?: string;};
type clientId = string;
type downloader = IStorageDownloader;
type gatewayUrls = GatewayUrls | Array<string>;
type secretKey = string;
type uploader = IStorageUploader<T>;
type uploadServerUrl = string;