import { User } from './user.js';
import { Note } from './note.js';
export type Notification = {
    id: string;
    createdAt: string;
    type: NotificationType;
    userId: string;
    user: User;
    note?: Note;
    reaction?: string;
};
export type NotificationType = string;
