import { Model } from "sequelize"; declare const _default: { id: { type: string; autoIncrement: boolean; primaryKey: boolean; }; title: { type: string; }; message: { type: string; }; notificationClass: { type: string; }; channel: { type: string; }; metadata: { type: string; }; createdAt: { type: string; autoCreatedAt: boolean; }; updatedAt: { type: string; autoUpdatedAt: boolean; }; }; export default _default; export interface NotificationAP { id: string; title: string; message: string; channel: string; notificationClass: string; metadata?: Record; createdAt: Date; } export interface NotificationAPModel extends Model, NotificationAP { toJSON(): NotificationAP; }