import type * as types from "./types"; export interface TextBox extends types.ElementBase, types.EditableElement, types.ElementWithReadOnly, types.ElementWithMaxLength, types.ElementWithRequire { /** Indicates the current value. */ readonly value: string; }