/**
 * Component de dialogo de componente
 */
import { OnInit } from '@angular/core';
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
import { AlertService } from '../alert/alert.service';
import { ConfirmOptions } from './dialog-confirm.service';
import * as i0 from "@angular/core";
export declare class DialogConfirmComponent implements OnInit {
    activeModal: NgbActiveModal;
    private alertService;
    options: ConfirmOptions;
    loading: boolean;
    constructor(activeModal: NgbActiveModal, alertService: AlertService);
    ngOnInit(): void;
    onOk(): void;
    onClose(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<DialogConfirmComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<DialogConfirmComponent, "app-dialog-confirm", never, { "options": "options"; }, {}, never, never, false>;
}
