export declare const useHTMLInput: (type: "file" | "text" | "password") => HTMLInputElement;
export declare const useTextInput: (type: "text" | "password" | "number", value: string, onChange: (s: string) => void) => {
input: HTMLInputElement;
focused: boolean;
focusInput: () => void;
};