export declare type TUserNotificationPriority = 'normal' | 'urgent'; export interface IUserNotification { id: string; date: Date; subject: string; text: string; priority: TUserNotificationPriority; } export declare const emptyUserNotification: IUserNotification;