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