import { OnInit } from '@angular/core'; import { ExgModalService } from '../exg-modal.service'; export declare class ExgModalSimpleComponent implements OnInit { private popUpService; data: { [key: string]: any | undefined; title: string; message: string; btnOk: boolean; btnCancel: boolean; btnOkCaption: string; btnCancelCaption: string; }; constructor(popUpService: ExgModalService); ngOnInit(): void; clickedOK(): void; clickedCancel(): void; }