import { EventEmitter } from '../../stencil-public-runtime'; import 'quill/dist/quill.snow.css'; export declare class DdaTextarea { label: string; placeholder: string; max_characters: number; value: string; input_id: string; textarea_name: string; aria_label?: string; show_info_icon: boolean; helper_text?: string; error_message: string; validation_type?: string; validation_id: string; input_status?: string; custom_class?: string; component_mode?: string; enable_rich_editor?: boolean; el: HTMLElement; characterCount: number; internalValue: string; private quill; textareaChanged: EventEmitter; onChanged: EventEmitter; textareaBlurred: EventEmitter<{ name: string; value: string; }>; onBlurred: EventEmitter; getValue(): Promise; setValue(val: string): Promise; reset(): Promise; componentDidLoad(): void; handleInput(event: Event): void; handleBlur(event: Event): void; render(): any; }