///
import * as React from 'react';
import PropTypes from 'prop-types';
import { AbstractCheckboxProps } from '../checkbox/Checkbox';
import { RadioChangeEvent } from './interface';
export declare type RadioButtonProps = AbstractCheckboxProps;
export default class RadioButton extends React.Component {
static defaultProps: {
prefixCls: string;
};
static contextTypes: {
radioGroup: PropTypes.Requireable;
};
render(): JSX.Element;
}