import { default as React } from 'react'; import { RadioGroupProps } from './radio-group.types'; /** * * RadioGroup is a component that groups Radio components together, * ensuring that only one Radio within the group can be selected at a time. * It is used when there is a list of two or more options that are mutually * exclusive and the user must select exactly one choice * * ### Usage * * ```tsx * import { RadioGroup, RadioField } from '@bloomreach/react-banana-ui'; * * export default function MyRadioFieldGroupComponent() { * return ( * * * * * * )}; * ``` *OR * * ### Usage * * ```tsx * import { RadioGroup, Radio } from '@bloomreach/react-banana-ui'; * * export default function MyRadioGroupComponent() { * return ( * * * * * * )}; * ``` */ declare const RadioGroup: React.ForwardRefExoticComponent>; export default RadioGroup;