import { FunctionComponent, ChangeEventHandler, Ref } from 'react'; import { CheckLabelPosition } from './CheckLabel'; interface NativeRadioButtonProps { id: string; name: string; value: string; label: string; disabled?: boolean; checked?: boolean; onChange: ChangeEventHandler; } export interface RadioButtonProps extends NativeRadioButtonProps { labelPosition?: CheckLabelPosition; isRequired?: boolean; forwardRef?: Ref; } declare const RadioButton: FunctionComponent; export default RadioButton;