import * as React from 'react'; import './index.less'; interface RadioGroupSetterProps { value: boolean; disabled: boolean; options: any; defaultValue: any; onChange: (val: number) => void; } interface RadioGroupSetterState { setterValue: string | null; } export default class RadioGroupSetter extends React.PureComponent { static displayName: string; state: RadioGroupSetterState; renderLabel: (dataSource: any) => any[]; render(): React.JSX.Element; } export {};