import { UmbLitElement } from '../../core/lit-element/index.js'; import type { UmbPropertyEditorConfigCollection, UmbPropertyEditorUiElement } from '../../core/property-editor/index.js'; declare const UmbPropertyEditorUITextareaElement_base: import("../../../libs/extension-api/index.js").HTMLElementConstructor> & typeof UmbLitElement; export declare class UmbPropertyEditorUITextareaElement extends UmbPropertyEditorUITextareaElement_base implements UmbPropertyEditorUiElement { #private; /** * Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content. * @type {boolean} * @attr * @default false */ readonly: boolean; /** * Sets the input to mandatory, meaning validation will fail if the value is empty. * @type {boolean} */ mandatory?: boolean; mandatoryMessage: string; /** * The name of this field. * @type {string} */ name?: string; private _maxChars?; private _rows?; private _css; set config(config: UmbPropertyEditorConfigCollection | undefined); protected firstUpdated(): void; focus(): Promise | undefined; render(): import("lit-html").TemplateResult<1>; static readonly styles: import("lit").CSSResult[]; } export default UmbPropertyEditorUITextareaElement; declare global { interface HTMLElementTagNameMap { 'umb-property-editor-ui-textarea': UmbPropertyEditorUITextareaElement; } }