import * as React from "react"; export interface InputProps extends React.InputHTMLAttributes { infoText?: string; helperText?: string; type: "text" | "password" | "email" | "number" | "search" | "file" | "datetime-local" | "hidden" | "tel" | "url" | "week" | "month" | "time" | "reset" | "submit"; } declare const Input: React.ForwardRefExoticComponent>; export default Input;