import { RadioProps } from './radio.types'; /** * Radio buttons are used to pick an option when only one option can be chosen. * A single radio button 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 { Radio } from '@bloomreach/react-banana-ui'; * * export default function MyRadioComponent() { * const [checked, setChecked] = useState(false); * return ( * setChecked(event.target.checked)} * /> * ); * } * ``` */ declare const Radio: import('react').ForwardRefExoticComponent>; export default Radio;