import * as React from 'react';
import RadioProps from './RadioPropsType';
export default class Radio extends React.Component<RadioProps, any> {
    static propTypes: {
        style: React.Requireable<any>;
        checked: React.Requireable<any>;
        defaultChecked: React.Requireable<any>;
        disabled: React.Requireable<any>;
        onChange: React.Requireable<any>;
    };
    static RadioItem: any;
    constructor(props: RadioProps, context: any);
    componentWillReceiveProps(nextProps: RadioProps, nextContext: any): void;
    handleClick: () => void;
    render(): JSX.Element;
}
