/// <reference types="react" />
import PropTypes from 'prop-types';
import { AbstractCheckboxProps } from '../checkbox/Checkbox';
import { RadioChangeEvent } from './interface';
export declare type RadioButtonProps = AbstractCheckboxProps<RadioChangeEvent>;
declare const RadioButton: {
    (props: RadioButtonProps, context: any): JSX.Element;
    displayName: string;
    contextTypes: {
        radioGroup: PropTypes.Requireable<any>;
    };
};
export default RadioButton;
