/// import { InputProps } from 'antd'; import './index.less'; interface IInputProps extends Omit { defaultValue?: string; value?: string; className?: string; onEnter?: (val: string) => void; onChange?: (val: string) => void; } declare function Input({ prefix, className, suffix, allowClear, defaultValue, value, onChange, onEnter, ...props }: IInputProps): JSX.Element; declare namespace Input { var defaultProps: { className: string; prefix: JSX.Element; allowClear: boolean; }; } export default Input;