import { ThemePalette } from '@angular/material/core'; export interface PghDialogData { title: string; message: string; acceptBtnText?: string; rejectBtnText?: string; dontShowAgainConfig?: { persistId: string; checkBoxText?: string; }; uiOptions?: UIOptions; } interface UIOptions { rejectBtnColor?: ThemePalette; acceptBtnColor?: ThemePalette; } export {};