import { OnInit, ChangeDetectorRef } from '@angular/core'; import { Survey, Question, ReplyItem } from '../../../../classes'; import { RepliesService } from '../../../../services'; export declare class RegularRowComponent implements OnInit { private repliesService; private cdRef; survey: Survey; item: ReplyItem; index: number; constructor(repliesService: RepliesService, cdRef: ChangeDetectorRef); ngOnInit(): void; ngOnDestroy(): void; prettify(question: Question): string; TrackByIdFn(index: any, item: any): any; onOpenChange($event: boolean): void; }