import { MatDialogRef } from '@angular/material/dialog'; import { ErrorDialogData } from './_models/error-dialog-data.model'; /** * A dialog component to display an error message */ export declare class ErrorDialogComponent { private dialogRef; /** The title of the error dialog */ title: string; /** The dialog error message */ message: string; /** * @param dialogRef - A reference to the dialog * @param data - The data passed to the dialog. An instance of ErrorDialogData containing the dialog's title and message */ constructor(dialogRef: MatDialogRef, data: ErrorDialogData); /** * Method called when the dialog is cancelled */ onClose(): void; }