import { LitElement } from 'lit'; export declare class EprTextArea extends LitElement { labelText: string; inputValue: string; readOnly: boolean; getInputValue: (e: Event) => void; static styles: import("lit").CSSResult[]; private _targetInput; updated(): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'epr-textarea': EprTextArea; } }