/// import React from 'react'; import { AbstractCheckboxGroupProps } from '../checkbox/Group'; export interface RadioGroupProps extends AbstractCheckboxGroupProps { defaultValue?: string | number; value?: string | number; onChange?: React.FormEventHandler; size?: 'large' | 'default' | 'small'; onMouseEnter?: React.FormEventHandler; onMouseLeave?: React.FormEventHandler; } export default class RadioGroup extends React.Component { static defaultProps: { disabled: boolean; }; static childContextTypes: { radioGroup: React.Requireable; }; constructor(props: any); getChildContext(): { radioGroup: { onChange: (ev: any) => void; value: any; disabled: boolean | undefined; }; }; componentWillReceiveProps(nextProps: any): void; shouldComponentUpdate(nextProps: any, nextState: any): boolean; onRadioChange: (ev: any) => void; render(): JSX.Element; }