import { RadioFieldProps } from './radio-field.types'; /** * Radio fields are used to pick an option when only one option can be chosen. * A single Radio field can be used representing a singular option, * for the purpose of selecting an element between a group of options. * * ### Usage * * ```tsx * import { useState } from 'react'; * import { RadioField } from '@bloomreach/react-banana-ui'; * * export default function MyRadioFieldComponent() { * const [checked, setChecked] = useState(false); * * return ( * setChecked(event.target.checked)} * /> * ); * } * ``` */ declare const RadioField: import('react').ForwardRefExoticComponent>; export default RadioField;