/** * A class to store confirm dialog data */ export declare class ErrorDialogData { title: string; message: string; /** * @param title - The title of the error dialog * @param message - The message to display in the error dialog */ constructor(title: string, message: string); }