import React__default from 'react'; import { Input } from 'antd'; import { InputProps } from 'antd/es/input'; import MemoTextArea from './TextArea.js'; interface IInputProps extends InputProps { /** 是否开启enter 搜索 */ isEnterSearch?: boolean; } type IGroup = typeof Input.Group; type ISearch = typeof Input.Search; type ITextArea = typeof MemoTextArea; type IPassword = typeof Input.Password; interface IInputComponent extends React__default.ForwardRefExoticComponent> { Group: IGroup; Search: ISearch; TextArea: ITextArea; Password: IPassword; displayName: string; } declare const MemoInput: IInputComponent; export { IInputProps, MemoInput as default };