///
import React from 'react';
export interface InputProps extends React.InputHTMLAttributes {
focused?: boolean;
}
declare class Input extends React.Component {
inputRef: any;
onInputBlur: (e: any) => void;
onInputFocus: (e: any) => void;
focus: () => void;
render(): JSX.Element;
}
export default Input;