import { default as React } from 'react'; type PlanItem = { id: string; name?: string; description?: string; cta_label?: string; highlight?: boolean; highlight_text?: string; }; type IPlanCardProps = { item: PlanItem; selected?: boolean; onSelect?: (itemId: string, item: PlanItem) => void; className?: string; }; declare const PlanCard: React.ForwardRefExoticComponent>; export { PlanCard };