export type HostingPlan = { title: string; monthCost: number; tagline: string; minHoursDuration: number; maxHoursDuration: number; stripePriceId: string | null; }; declare const PriceUtil: { hostingPlans: HostingPlan[]; hostingPlanFromDuration: (hours: number) => HostingPlan | undefined; formatPrice: (cents: number) => string; }; export default PriceUtil;