import { BillingMoney, BillingPrice, BillingProduct } from '@xylex-group/athena/billing'; export interface BillingPlanViewModel { actionable?: boolean; amount: BillingMoney; description?: string; interval?: string; name: string; priceId: string; productId: string; } export declare function projectBillingPlanViewModels(products: readonly BillingProduct[], prices: readonly BillingPrice[]): BillingPlanViewModel[];