import type { ServicePriceResult } from './service-price.ts'; export interface CalculateStorageCostsResult { storagePerMonth: bigint; cdnEgressPerTiB: bigint; cacheMissEgressPerTiB: bigint; minimumPerMonth: bigint; } export declare function calculateStorageCosts(sizeInBytes: bigint, prices: ServicePriceResult): CalculateStorageCostsResult; //# sourceMappingURL=utils.d.ts.map