import { CSSResult } from 'lit'; import { LitElement } from 'lit'; import { TemplateResult } from 'lit-html'; declare abstract class PlusBase extends LitElement { static styles: CSSResult[]; id: string; name: string; value: string | number; disabled: boolean; readonly: boolean; required: boolean; loading: boolean; title: string; emit(name: string, options?: CustomEventInit): CustomEvent; } export declare class textareaComponent extends PlusBase { static styles: CSSResult[]; textarea: HTMLInputElement; private hasFocus; name: string; value: string; placeholder: string; size: "sm" | "md" | "lg"; clearable: boolean; label?: string; minlength: number; maxlength: number; autocapitalize: "off" | "none" | "on" | "sentences" | "words" | "characters"; autocorrect: "off" | "on"; autocomplete: string; autofocus: boolean; enterkeyhint: "enter" | "done" | "go" | "next" | "previous" | "search" | "send"; inputmode: "none" | "text" | "decimal" | "numeric" | "tel" | "search" | "email" | "url"; spellcheck: boolean; caption?: string; error: boolean; rows: number; cols: number; resize: "none" | "both" | "horizontal" | "vertical"; fullWidth: boolean; private handleBlur; private handleChange; private handleClearClick; private handleFocus; private handleInput; private handleInvalid; private handleKeyDown; render(): TemplateResult; } export { }