export declare enum InputType { EditText = "editText", ComboBox = "comboBox", DatePicker = "datePicker", Selector = "selector", CheckBox = "checkBox", WebView = "webView", Button = "button", Send = "send", Delete = "delete", Modify = "modify", Hidden = "hidden", Action = "action", DateTimePicker = "dateTimePicker", } export declare enum InputImportance { High = "high", Middle = "mid", Low = "low", } export declare class Input { protected type: InputType; protected name: string; protected value: string; protected importance: InputImportance; constructor(type: InputType, name: string); setType(type: InputType): this; setName(name: string): this; setValue(value: string): this; setImportance(importance: InputImportance): this; readonly Importance: InputImportance; readonly Type: InputType; readonly Name: string; readonly Value: string; toJSON(): any; }