import { RadioProps } from '../radio/Radio'; import { WithInputAttributesProps } from '../inputs/contexts'; export type RadioGroupRadio = Omit, 'name' | 'checked' | 'onChange' | 'className'>; export interface RadioGroupProps { name: string; radios: readonly RadioGroupRadio[]; selectedValue?: T; onChange: NonNullable['onChange']>; UNSAFE_inputAttributes?: WithInputAttributesProps['inputAttributes']; } export default function RadioGroup({ name, radios, selectedValue: controlledValue, onChange, UNSAFE_inputAttributes, }: RadioGroupProps): import("react").JSX.Element | null; //# sourceMappingURL=RadioGroup.d.ts.map