import { EventEmitter } from '@angular/core'; import { BaseComponentWithTheme } from '../../utils'; import type { TextareaAutoComplete, BreakpointCustomizable, TextareaResize, TextareaState, Theme, TextareaWrap } from '../types'; import * as i0 from "@angular/core"; export declare class PTextarea extends BaseComponentWithTheme { autoComplete?: TextareaAutoComplete; description?: string; disabled?: boolean; form?: string; hideLabel?: BreakpointCustomizable; label?: string; maxLength?: number; message?: string; minLength?: number; name: string; placeholder?: string; readOnly?: boolean; required?: boolean; resize?: TextareaResize; rows?: number; showCounter?: boolean; spellCheck?: boolean; state?: TextareaState; theme?: Theme; value?: string; wrap?: TextareaWrap; blur: EventEmitter>; change: EventEmitter>; input: EventEmitter>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }