import React from 'react'; export interface RadioProps { /** * html `name` attribute. * Use to create radio groups. */ name: string; /** html `label` element content */ label: string; /** If the supplied `label` prop should be rendered to the screen. */ showLabel?: boolean; /** `true` checks the radio by default */ defaultChecked?: boolean; /** Disables form field when `true` */ disabled?: boolean; /** The radio input `checked` attribute */ checked?: boolean; /** The radio input `value` attribute */ value: string; /** The radio input `onChange` attribute */ onChange?: React.ChangeEventHandler; } declare const Radio: React.ForwardRefExoticComponent>; export default Radio;