export interface RadioProps extends Omit, "id" | "type" | "checked" | "defaultChecked"> { id?: string; } /** * A Radio is a control that allows the user to select one option from a set. * Should be used with a RadioGroup. * * @example * console.log(e.target.value)} > Radio 1 Radio 2 Radio 3 Radio 4 * * @see https://neo-react-library-storybook.netlify.app/?path=/story/components-radio-group * @see https://design.avayacloud.com/components/web/radio-web */ export declare const Radio: React.FC;