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