import type Notification from "./Notification"; import type User from "../Notary/User"; declare namespace UserHasNotification { class IUserHasNotification { uuid: string; user: User.IUser; notification: Notification.INotification; created_at: Date | null; updated_at: Date | null; } type ENotificationStatus = "READ" | "UNREAD"; } export default UserHasNotification;