import { NotificationAP } from "./NotificationAP"; declare const _default: { id: { type: string; autoIncrement: boolean; primaryKey: boolean; }; userId: { type: string; required: boolean; }; notificationId: { model: string; }; read: { type: string; defaultsTo: boolean; }; }; export default _default; export interface UserNotificationAP { id: number; userId: number; notificationId: NotificationAP; read: boolean; }