import type { InputHTMLAttributes, ReactElement } from 'react'; declare type InputProps = InputHTMLAttributes & { name: string; hasFocus: boolean | ((name: string) => boolean); }; declare function Input({ name, hasFocus, ...props }: InputProps): ReactElement; declare namespace Input { var defaultProps: { autoComplete: string; }; } export default Input;