import type { NotificationType } from './NotificationType'; import type { NotificationStatus } from './NotificationStatus'; import type { NotificationUrgency } from './NotificationUrgency'; import type { NotificationMessageType } from './NotificationMessageType'; export interface Notification { id: string; type: NotificationType; status: NotificationStatus; title: string; message: string; actionUrl?: string; createdAt: string; readAt?: string; urgency: NotificationUrgency; messageType: NotificationMessageType; }