import { FormEvent, FunctionComponent, HTMLProps, ReactNode } from 'react'; import { Omit } from '../../typeUtils'; export interface RadioProps extends Omit, 'type' | 'onChange' | 'disabled' | 'label'> { isDisabled?: boolean; isValid?: boolean; isChecked?: boolean; onChange?(checked: boolean, event: FormEvent): void; id: string; 'aria-label'?: string; label?: ReactNode; name: string; } declare const Radio: FunctionComponent; export default Radio;