import * as React from 'react'; export interface FormComponentsProps { getRefForm: any; form: any; placeholder: any; value: any; handleSubmit: (e?: any) => void; datas?: Array<{ isRequire?: boolean; type: string; onChange: Function; value?: any; codeType?: string; defaultValue?: string; className?: string; dropdownMatchSelectWidth?: boolean; mode?: string; style?: Object; col?: any; placeholder?: string; optionData?: Array<{ value: string; text: string; }>; radioData?: Array<{ value: string; text: string; }>; }>; } export interface FormComponentsState { dataDictionaryList: Array; loading: boolean; } declare const _default: React.ComponentClass, React.ComponentState>; export default _default;