export type NotificationType = 'task_assigned' | 'task_collaborator_added' export type Notification = { '@id'?: string id: number user: string type: NotificationType title: string message: string isRead: boolean createdAt: string }