import type { IStream } from '../../../stream/index.js'; export declare enum InputType { TEXT = "text", NUMBER = "number", SEARCH = "search", PASSWORD = "password", BUTTON = "button", CHECKBOX = "checkbox", COLOR = "color", DATE = "date", TEL = "tel", URL = "url", HIDDEN = "hidden" } export interface Control { disabled?: IStream>; } export interface Input extends Control { value: IStream; validation?: IStream; }