//#region src/server/bunny/storage.d.ts type BunnyStorageCredentials = { apiKey: string; region?: string; zoneName: string; }; declare const deleteStorageFile: ({ apiKey, path, region, zoneName }: { path: string; } & BunnyStorageCredentials) => Promise; declare const uploadStorageFile: ({ apiKey, buffer, mimeType, path, region, timeout, zoneName }: { buffer: Buffer; mimeType: string; path: string; timeout?: number; } & BunnyStorageCredentials) => Promise; //#endregion export { BunnyStorageCredentials, deleteStorageFile, uploadStorageFile }; //# sourceMappingURL=storage.d.ts.map