import { CommonModel } from "../classes/commonModel"; export declare class Notification extends CommonModel { idPrefix(): string; from: string; subject: string; body: string; cta: string; ctaLink: string; readAt: Date; apiData(): Promise<{ id: string; from: string; subject: string; body: string; cta: string; ctaLink: string; createdAt: number; updatedAt: number; readAt: number; }>; }