import { Components } from "../../core"; import { Event } from "../../base-types"; import { SimpleUIComponent } from "../SimpleUIComponent"; export declare class TextArea extends SimpleUIComponent { name: string; readonly onChange: Event; set value(value: string); get value(): string; set label(value: string | null); get label(): string | null; set placeholder(value: string); get placeholder(): string; innerElements: { label: HTMLLabelElement; input: HTMLInputElement; }; constructor(components: Components); dispose(onlyChildren?: boolean): Promise; }