import type { PricingPlan } from '../PricingTable/PricingTable.svelte'; interface CheckoutPageProps { plans?: PricingPlan[]; selectedPlanId?: string; loading?: boolean; class?: string; onselect?: (id: string) => void; onsubmit?: (payload: { planId: string; name: string; email: string; company: string; }) => void; } declare const CheckoutPage: import("svelte").Component; type CheckoutPage = ReturnType; export default CheckoutPage;