import { BaseInputProps } from '../../types/input'; import { ChangeEvent } from 'react'; export interface InputRadioProps extends Omit { /** Callback that will fire anytime the state of the radio changes. */ onChange?: (event: ChangeEvent, checked: boolean) => void; } declare const InputRadio: import("react").ForwardRefExoticComponent>; export default InputRadio;