import { OnInit, EventEmitter } from '@angular/core'; import { ConfirmationIndexService } from './confirmation-index.service'; export declare class ConfirmationIndexComponent implements OnInit { service: ConfirmationIndexService; statusCancelCb: EventEmitter; profile: any; loan: any; data: any; xauth: any; MODAL_STATUS: { SUCCESS: string; FAILED_TO_CANCEL: string; FAILED: string; ERROR: string; }; CANCEL_STATUS: { ACCEPTED: number; NOT_ACCEPTED: number; PENDING: number; NOT_EXIST: number; }; constructor(service: ConfirmationIndexService); ngOnInit(): void; checkStatusCancel(): void; handleCancelAccepted(): void; }