import { EventEmitter, OnInit } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import * as i0 from "@angular/core"; export declare class TextareaComponent implements OnInit, ControlValueAccessor { placeholder: string; error: string; helperText: string; readonly: boolean; required: boolean; resize: boolean; name: string; isDisabled: boolean; model: string; modelChange: EventEmitter; focused: boolean; ngOnInit(): void; onChange(event: any): void; /** * Method to call when value has changes. */ propagateChange: (_: string) => void; /** * Method to call when the component is touched (when it was is clicked). */ propagateTouched: () => void; /** * update value from model to the component */ writeValue(value: string): void; /** * Informs the outside world about changes. * see method propagateChange call - this.propagateChange(this.model); */ registerOnChange(fn: any): void; /** * on click */ registerOnTouched(fn: any): void; /** * on set form controll enabled / disabled * also do UI Component enabled / disabled */ setDisabledState?(isDisabled: boolean): void; focus(): void; blur(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }