import type * as types from "./types"; export interface TextArea extends types.ElementBase, types.EditableElement, types.ElementWithReadOnly, types.ElementWithRequire, types.ElementWithMaxLength { /** Indicates the current value. */ readonly value: string; /** Indicates how the control wraps text. */ readonly wrap?: "hard" | "soft" | "off"; }