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