///
import React from 'react';
export interface RadioButtonProps {
value: string | number;
style?: React.CSSProperties;
disabled?: boolean;
checked?: boolean;
onChange?: (e: any) => any;
}
export default class RadioButton extends React.Component {
static defaultProps: {
prefixCls: string;
};
static contextTypes: {
radioGroup: React.Requireable;
};
render(): JSX.Element;
}