/** * All possible types for the textfield. * Compiled from https://www.w3schools.com/tags/att_input_type.asp */ export declare type TextfieldType = "color" | "date" | "datetime-local" | "email" | "file" | "hidden" | "month" | "number" | "password" | "search" | "tel" | "text" | "time" | "url" | "week";