import { FC } from 'react'; interface RadioProps extends Omit, 'defaultValue' | 'onChange'> { listOptionWithAPI?: { url: string; nameKey: string; valueKey: string; labelKey: string; }; listOption?: ListOption[]; onChange?: (value?: string | number) => void; name?: string; defaultValue?: string | number; disabled?: boolean; optionClassName?: string; } interface ListOption { label: string; key: string | number; } declare const Radio: FC; export default Radio;