import { OnInit, ChangeDetectorRef } from '@angular/core'; import { ReplyService, TimerService } from '../../services'; import { ActivatedRoute } from '@angular/router'; import { LoadingService } from '@schoolbelle/common/loading'; import { Survey } from '../../classes'; import { FormGroup, FormControl } from '@angular/forms'; import { Subscription } from 'rxjs'; import { ToastrService } from 'ngx-toastr'; import { CrosswindowMessageService } from '@schoolbelle/common/crosswindow-message'; export declare class ReplyComponent implements OnInit { reply: ReplyService; private timer; private route; private loading; private toastr; private message; private cdRef; survey: Survey; replyFormGroup: FormGroup; open_at: FormControl; close_at: FormControl; subscriptions: Subscription; constructor(reply: ReplyService, timer: TimerService, route: ActivatedRoute, loading: LoadingService, toastr: ToastrService, message: CrosswindowMessageService, cdRef: ChangeDetectorRef); ngOnInit(): void; loadInitialData(surveyData: any, timeData: any): void; ngOnDestroy(): void; addControls(): void; watchReplyTimeWindow(serverTimeOffset?: number): void; trackByIdFn(index: number, value: any): any; submit(): void; }