import { MatDialogRef } from '@angular/material/dialog'; import { ConfirmDialogData } from './_models/confirm-dialog-data.model'; /** * A dialog component to prompt the user for a YES/NO answer */ export declare class ConfirmDialogComponent { private dialogRef; /** The title of the confirm dialog */ title: string; /** The message to display in the confirm dialog */ message: string; /** * @param dialogRef - A reference to the dialog component * @param data - The data passed to the dialog. An instance of ConfirmDialogData containing the dialog's title and message */ constructor(dialogRef: MatDialogRef, data: ConfirmDialogData); /** * Method called when the dialog is cancelled */ onClose(): void; /** * Method callsed when the OK button is pressed */ onConfirm(): void; }