import * as React from 'react'; import { InputEventHandler } from './PropsType'; import { Omit } from '../_util/types'; export declare type HTMLInputProps = Omit, 'onFocus' | 'onBlur'>; export interface InputProps extends HTMLInputProps { 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;