export declare enum InputType { TEXT = "text", NUMBER = "number", PASSWORD = "password", DATE = "date", COLOR = "color", DATETIME = "datetime-local", TIME = "time", DEFAULT = "default" } export declare enum InputCustomUse { DEFAULT = "", DROPDOWN = "dropdown" } export declare type TulInputType = `${InputType}`; export declare type TulInputCustomUse = `${InputCustomUse}`;