import type { CSSProperties } from 'react'; import PlansLocales from './locales/en'; import type { Feature, PlanType } from './types'; type PlansProps = { fieldName?: string; onChange?: (newPlanValue: string | undefined) => void; value?: string; features: Feature[]; plans: PlanType[]; hideFeatureText?: boolean; hideLabels?: boolean; locales?: Record; style?: CSSProperties; /** Highlights a plan. Use plan value and define the content of the highlight badge */ highlight?: { plan: string; content: string; }; }; export declare function Plans({ fieldName, onChange, value, features, plans, hideFeatureText, hideLabels, locales, style, highlight, }: PlansProps): import("react").JSX.Element; export declare namespace Plans { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map