///
import React from 'react';
import { InputEventHandler } from './PropsType';
import { Omit } from '../_util/types';
export declare type HTMLInputProps = Omit, 'onFocus' | 'onBlur'>;
export interface InputProps extends HTMLInputProps {
focused?: boolean;
onFocus?: InputEventHandler;
onBlur?: InputEventHandler;
}
declare class Input extends React.Component {
inputRef: HTMLInputElement | null;
onInputBlur: (e: React.FocusEvent) => void;
onInputFocus: (e: React.FocusEvent) => void;
focus: () => void;
render(): JSX.Element;
}
export default Input;