var InputType;
(function (InputType) {
    InputType["text"] = "text";
    InputType["search"] = "search";
    InputType["email"] = "email";
    InputType["url"] = "url";
    InputType["password"] = "password";
    InputType["date"] = "date";
    InputType["localTime"] = "time";
    InputType["localDateTime"] = "datetime-local";
    InputType["number"] = "tel";
})(InputType || (InputType = {}));
export default InputType;
