import React from 'react';
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
    bordered?: boolean;
    changeDelay?: number | boolean;
    hotKey?: string;
    onHotKey?: (ev: React.KeyboardEvent<HTMLInputElement>, val: any) => void;
}
declare const Input: React.MemoExoticComponent<React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>>;
export default Input;
