/// import React from 'react'; import BasePropsType from './PropsType'; export interface InputItemProps extends BasePropsType { prefixCls?: string; prefixListCls?: string; className?: string; } 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; moneyKeyboardAlign: string; }; static contextTypes: { antLocale: any; }; inputRef: any; private debounceTimeout; private scrollIntoViewTimeout; constructor(props: any); componentWillReceiveProps(nextProps: any): void; componentWillUnmount(): void; onInputChange: (e: any) => void; onInputFocus: (value: any) => void; onInputBlur: (value: any) => void; onExtraClick: (e: any) => void; onErrorClick: (e: any) => void; clearInput: () => void; focus: () => void; render(): JSX.Element; } export default InputItem;