/// import React from 'react'; import { AbstractCheckboxProps } from '../checkbox/Checkbox'; import RadioGroup from './group'; import RadioButton from './radioButton'; export interface RadioProps extends AbstractCheckboxProps { } export default class Radio extends React.Component { static Group: typeof RadioGroup; static Button: typeof RadioButton; static defaultProps: { prefixCls: string; }; static contextTypes: { radioGroup: React.Requireable; }; shouldComponentUpdate(nextProps: any, nextState: any, nextContext: any): boolean; render(): JSX.Element; }