import { OnDestroy } from '@angular/core';
import { ModalService } from '../../services/modal.service';
export declare class ModalComponent implements OnDestroy {
    private modalService;
    private modal;
    private title;
    private buttonText;
    private message;
    private actionKey;
    eventListeners: any[];
    constructor(modalService: ModalService);
    ngOnDestroy(): void;
    open(title: string, message: string, buttonText: string): void;
    doAction(): void;
}
