//#region src/shared/constants.d.ts declare const PLUGIN_KEY = "@seshuk/payload-storage-bunny"; declare const BUNNY_API: { readonly BASE_URL: "https://api.bunny.net"; readonly STORAGE_HOSTNAME: "storage.bunnycdn.com"; readonly STREAM_URL: "https://video.bunnycdn.com"; readonly TUS_ENDPOINT: "https://video.bunnycdn.com/tusupload"; }; declare const getStorageUrl: (region?: string) => string; declare const TIMEOUTS: { readonly DEFAULT: 15000; readonly STREAM_UPLOAD: 300000; readonly UPLOAD: 120000; }; declare const TUS_MIME_TYPES: string[]; //#endregion export { BUNNY_API, PLUGIN_KEY, TIMEOUTS, TUS_MIME_TYPES, getStorageUrl }; //# sourceMappingURL=constants.d.ts.map