///
import React from 'react';
import InputItemProps from './PropsType';
declare class InputItem extends React.Component {
static defaultProps: {
prefixCls: string;
prefixListCls: string;
type: string;
editable: boolean;
disabled: boolean;
placeholder: string;
clear: boolean;
onChange: () => void;
onBlur: () => void;
onFocus: () => void;
extra: string;
onExtraClick: () => void;
error: boolean;
onErrorClick: () => void;
labelNumber: number;
updatePlaceholder: boolean;
};
debounceTimeout: any;
scrollIntoViewTimeout: any;
constructor(props: any);
componentWillReceiveProps(nextProps: any): void;
componentWillUnmount(): void;
componentDidMount(): void;
componentDidUpdate(): void;
onInputChange: (e: any) => void;
onInputBlur: (e: any) => void;
onInputFocus: (e: any) => void;
onExtraClick: (e: any) => void;
onErrorClick: (e: any) => void;
clearInput: () => void;
render(): JSX.Element;
}
export default InputItem;