import { EventEmitter } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { TextareaI } from '../../../interfaces/textarea.interface'; import * as i0 from "@angular/core"; export declare class TextareaComponent implements ControlValueAccessor, TextareaI { value: string; placeholder: string; textareaLabel: string; rows: string; cols: string; name: string; isDisabled: boolean; showError?: boolean; error?: string; focus: EventEmitter; blur: EventEmitter; valueChange: EventEmitter; btnClick: EventEmitter; onChange: (_: string | undefined) => void; onTouch: () => void; textareaChange(value: EventTarget | null): void; textareaFocus(): void; textareaBlur(): void; writeValue(value: string | undefined): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; setDisabledState(isDisabled: boolean): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }