import { ComponentFactoryResolver, ComponentRef, OnInit, ViewContainerRef } from "@angular/core";
import { MatDialogRef } from "@angular/material";
import { XmatConfirmDialogData } from "../../models/xmat-confirm-dialog.model";
import { XmatDialogContentComponent } from "./xmat-dialog-content.component";
export declare class XmatConfirmDialogComponent implements OnInit {
    protected _dialogRef: MatDialogRef<XmatConfirmDialogComponent>;
    protected _resolver: ComponentFactoryResolver;
    protected _viewContainerRef: ViewContainerRef;
    data: XmatConfirmDialogData;
    dialogContentOutlet: XmatDialogContentComponent;
    protected _dialogContentClass: typeof XmatDialogContentComponent;
    protected _dialogContentRef: ComponentRef<XmatDialogContentComponent>;
    constructor(_dialogRef: MatDialogRef<XmatConfirmDialogComponent>, _resolver: ComponentFactoryResolver, _viewContainerRef: ViewContainerRef, data: XmatConfirmDialogData);
    ngOnInit(): void;
    onNoClick(): void;
    onYesClick(): void;
    protected _constructContent(): XmatDialogContentComponent;
}
