import { MatDialog } from '@angular/material/dialog'; import { DialogResult } from '../../models/dialog/dialog-result.model'; import { IErrorDialogService } from './_interfaces/error-dialog-service.interface'; /** * A service to manage and display error dialogs */ export declare class ErrorDialogService implements IErrorDialogService { private matDialog; /** * @param matDialog - A reference to the MatDialog service */ constructor(matDialog: MatDialog); /** * Open an error dialog * @param title - The title of the error dialog * @param message - The message to display to the user */ openErrorDialog(title: string, message: string): Promise>; }