import { OnInit, OnDestroy, EventEmitter } from '@angular/core'; import { ConfirmationFormService } from './confirmation-form.service'; import { ConfirmationWorkPlaceService } from './confirmation-work-place/confirmation-work-place.service'; import { ConfirmationIndexService } from './confirmation-index/confirmation-index.service'; import { AuthTokenService } from '../../services/authToken.service'; import { CookieService } from '../../services/cookie.service'; import { BankAccount, ProfileData } from './shared/models/profile-result.model'; export declare class ConfirmationFormComponent implements OnInit, OnDestroy { confirmationFormservice: ConfirmationFormService; workService: ConfirmationWorkPlaceService; indexService: ConfirmationIndexService; private cookieService; private authTokenService; statusCancelCb: EventEmitter; loanData: any; profileData: ProfileData; data: any; xauth: any; workData: any; bankData: BankAccount; CONFIRMATION_SENT: any; private subscription; constructor(confirmationFormservice: ConfirmationFormService, workService: ConfirmationWorkPlaceService, indexService: ConfirmationIndexService, cookieService: CookieService, authTokenService: AuthTokenService); ngOnInit(): void; ngOnDestroy(): void; statusCancelFromChildren(param: string): void; private setBankData(); }