import { OnInit, EventEmitter } from '@angular/core'; import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms'; import { ErrorMassageValidation } from '../../Shared/services/validationErrorMassage.service'; import { ControlUtility } from '../../Shared/services/ControlUtility'; import { TextAreaOptions } from '../../Shared/Models/TextAreaOptions'; export declare class TextAreaComponent implements OnInit { private ErrorHandler; private controlUtility; private controlContainer; TextAreaControlHost: FormGroupDirective; static controlContainerstatic: any; constructor(ErrorHandler: ErrorMassageValidation, controlUtility: ControlUtility, controlContainer: ControlContainer, TextAreaControlHost: FormGroupDirective); group: FormGroup; options: TextAreaOptions; OnChange: EventEmitter; TextAreaFormControl: AbstractControl; WordCount: number; WordCountArray: number; IsShowWordCount: boolean; markAllAsTouched: boolean; validationRules: any[]; validationRulesasync: any[]; ngOnInit(): void; ngAfterViewInit(): void; resetError: () => void; showGlobalError(): void; getErrorValidation(ErrorList: any): string; getInputType(type: number): string; trimControlValue(): void; copyInputMessage(inputElement: any): void; onTextChange(): void; showWordCount(value: boolean): void; RemoveRequiredValidation: () => void; AddRequiredValidation: () => void; RemoveCustomValidation: (CustomValidation: any) => void; AddCustomValidation: (CustomValidation: any) => void; IsValid: () => void; }