import * as React from 'react'; export interface RadioGroupComponentsProps { codeType: any; onChange?: (e?: any) => void; disabled?: boolean; value?: any; defaultValue?: any; } export interface RadioGroupComponentsState { dataDictionaryList: Array; loading: boolean; } declare class RadioGroupComponents extends React.Component { constructor(props: RadioGroupComponentsProps); componentWillMount(): void; searchTemplateForState: () => void; render(): JSX.Element; } export default RadioGroupComponents;