import { OnInit } from '@angular/core';
import { MatDialogRef } from '@angular/material/dialog';
export declare class ErrorDialogComponent implements OnInit {
    dialogRef: MatDialogRef<ErrorDialogComponent>;
    data: any;
    errorMessage: string;
    title: string;
    constructor(dialogRef: MatDialogRef<ErrorDialogComponent>, data: any);
    ngOnInit(): void;
    closeDialog(): void;
}
