import { OnInit } from '@angular/core'; import { MatDialogRef } from '@angular/material/dialog'; export interface DialogData { confirmationMessage: string; title: string; buttonText: string; iconClass: string; iconColor?: string; checkboxText?: string; showCheckBox?: boolean; cancelable?: boolean; action: (isCheckBoxChecked: boolean) => {}; cancel: () => {}; } export declare class ConfirmationDialogComponent implements OnInit { dialogRef: MatDialogRef; data: DialogData; isCheckBoxChecked: boolean; cancelable: boolean; constructor(dialogRef: MatDialogRef, data: DialogData); ngOnInit(): void; cancelAndClose(): void; actionAndClose(): void; }