import React from "react"; export type PlanPickerOption = Readonly<{ value: T; label: string; }>; export type PlanPickerProps = Readonly<{ value: T; options: readonly PlanPickerOption[]; onChange?: (v: T) => void; bgColor: string; activePillColor: string; className?: string; testId?: string; }> & React.AriaAttributes; export declare const PlanPicker: ({ value, options, onChange, bgColor, activePillColor, className, testId, ...ariaProps }: PlanPickerProps) => React.JSX.Element; //# sourceMappingURL=PlanPicker.d.ts.map