import { FC } from 'react'; interface DefaultCompomentsProps { moudle: any; error: boolean; placeholder: string; defaultValue: any; disabled?: boolean; onChange: (e: any) => void; inputProps?: { [name: string]: any; }; } /** * @module src\FormItem\compoments\defaultCompoments\index.tsx * @author zhanzl * @date 2022/06/02 */ declare const DefaultCompoments: FC; export default DefaultCompoments;