import type PlansLocales from './locales/en'; import type { PlanType } from './types'; type PlanHeaderProps = { fieldName?: string; setFocusedPlan: (planValue?: string) => void; onChange?: (newPlanValue?: string) => void; currentPlanValue?: string; plan: PlanType; disabled: boolean; locales: Record; }; export declare const PlanHeader: ({ fieldName, setFocusedPlan, onChange, currentPlanValue, plan, disabled, locales, }: PlanHeaderProps) => import("react").JSX.Element; export {}; //# sourceMappingURL=PlanHeader.d.ts.map