/// <reference types="react" />
import { KeyType } from '../types';
import { RadioProps } from '../../Radio';
interface FormRadioProps extends RadioProps {
    value?: KeyType;
    onChange?: (value: KeyType) => void;
    options?: Array<{
        label: string;
        value: KeyType;
    }>;
}
declare const FormRadio: ({ value, onChange, options, ...others }: FormRadioProps) => JSX.Element;
export default FormRadio;
