import { BasePropsType, BaseFormItemType } from '../_internal'; export interface InputItemPropsType extends BasePropsType, BaseFormItemType { value?: string; defaultValue?: string; placeholder?: string; clear?: boolean; }