import { NotificationType } from '../constants/notificationTypes';
export interface Notification {
    id: string;
    userId: string;
    type: NotificationType;
    title: string;
    message: string;
    data?: Record<string, any>;
    read: boolean;
    createdAt: Date;
}
//# sourceMappingURL=notification.d.ts.map