import { AfterViewInit, EventEmitter, OnInit } from '@angular/core'; import { SurveyQuestionStructure } from '../survey/survey.component'; import { IHttpSetting } from '../../../../interface/dataset-params'; import { ISurveySelected, ISurveySelectedEvent, SurveyFormItemComponentInterface } from '../../../../interface/component'; export declare class SurveyTextareaComponent implements OnInit, AfterViewInit, SurveyFormItemComponentInterface { prop: SurveyQuestionStructure; isFilter: boolean; thisAppearance: any; setting: IHttpSetting; keyOnEnter: EventEmitter; datasetId: number; formId: number; index: number; modelText: string; answers?: ISurveySelected[]; isView: boolean; selectedValue: EventEmitter; selectedAnswers: ISurveySelected[]; constructor(); ngOnInit(): void; ngAfterViewInit(): void; onKeyup($event: KeyboardEvent): void; getValue(): any; }