import { Notification } from './notification.entities'; export interface MixedNotification { origin: Notification; read: boolean; } export declare class NotificationHelper { static notification: string[]; static loadMixedNotification(origin: Notification): Promise; }