import React from 'react'; type RadioGroupProps = { /** The radio items to populate this radio. Should be of type RadioItem. */ children?: React.ReactElement | React.ReactElement[]; /** The name to use for the radio items. If not specified, a name is automatically generated */ name?: string; /** Triggered when a radio button is changed */ onChange: React.ChangeEventHandler; /** The currently selected value. Will automatically set the `checked` attribute of the RadioItem. */ value?: string; disabled?: boolean; 'data-testid'?: string; }; /** * A group of radio buttons. Use with RadioItems to populate, eg. * * * * */ declare function RadioGroup(props: RadioGroupProps): JSX.Element; export default RadioGroup; //# sourceMappingURL=RadioGroup.d.ts.map