export declare type NumOrUnlimited = number | 'unlimited'; export declare type SoN = string | number; export declare enum InputType { Checkbox = "checkbox", Color = "color", Date = "date", DateTimeLocal = "datetime-local", Email = "email", Month = "month", Number = "number", Password = "password", Radio = "radio", Search = "search", Tel = "tel", Text = "text", Time = "time", Url = "url", Week = "week" } export interface TypeInputInterface { type: InputType; }