import React from 'react'; import { InputEventHandler } from './PropsType'; export declare type HTMLInputProps = Omit, 'onFocus' | 'onBlur'>; export interface InputProps extends HTMLInputProps { onFocus?: InputEventHandler; onBlur?: InputEventHandler; handleSearch?: InputEventHandler; } declare const InputItem: any; export default InputItem;