import { ElementRef, OnInit } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { IconData } from '@ironsource/fusion-ui/components/icon/common/entities'; import { InputVariant } from '@ironsource/fusion-ui/components/input/v4'; import { BehaviorSubject } from 'rxjs'; import * as i0 from "@angular/core"; export declare class TextareaV4Component implements OnInit, ControlValueAccessor { placeholder: string; readonly: boolean; resize: boolean; name: string; isDisabled: boolean; model: string; maxLength: number; showLengthCounter: boolean; labelText: string; labelRequired: boolean; labelIcon: IconData; labelTooltipText: string; helperText: string; helperIcon: string; variant: InputVariant; /** @internal */ focused: boolean; /** @internal */ valueLength$: BehaviorSubject; /** @internal */ textArea: ElementRef; testId: string; get testAttribute(): string; 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; /** @internal */ focus(): void; /** @internal */ blur(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }