import * as React from 'react'; import { RadioGroupProps, RadioGroupState } from './interface'; export default class RadioGroup extends React.Component { static defaultProps: { disabled: boolean; }; static childContextTypes: { radioGroup: any; }; constructor(props: RadioGroupProps); getChildContext(): { radioGroup: { onChange: (ev: React.ChangeEvent) => void; value: any; disabled: boolean | undefined; name: string | undefined; }; }; componentWillReceiveProps(nextProps: RadioGroupProps): void; shouldComponentUpdate(nextProps: RadioGroupProps, nextState: RadioGroupState): boolean; onRadioChange: (ev: React.ChangeEvent) => void; render(): JSX.Element; }