/// <reference types="react" />
import React from 'react';
declare class Input extends React.Component<any, any> {
    scrollIntoViewTimeout: any;
    constructor(props: any);
    componentWillReceiveProps(nextProps: any): void;
    componentDidMount(): void;
    componentWillUnmount(): void;
    componentDidUpdate(): void;
    onInputBlur: (e: any) => void;
    onInputFocus: (e: any) => void;
    render(): JSX.Element;
}
export default Input;
