export interface AppNotificationDialogData {
  title: string;
  message?: string;
  timer?: number;
  actions?: {
    label: string;
    fn: () => void;
  }[];
}
