import { ErrorDialogService } from '../error-dialog.service'; import { DialogResult } from '../../../models/dialog/dialog-result.model'; /** * A service to mock the confirm dialog service */ export declare class MockErrorDialogService extends ErrorDialogService { /** * 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>; }