import { NewNotificationEvent as SseEvent } from '../../receivers'; import { NotificationTypeType } from './notification-type'; import { NotificationPriorityType } from './notification-priority'; export declare class NewNotificationEvent { private static readonly EventType; private static readonly ApiType; private static readonly BroadcastType; private static readonly TicketType; id: string; created: string; type: NotificationTypeType; entityId: number; message: string; link?: string; viewed: boolean; priority: NotificationPriorityType; expires?: string; timeout?: number; constructor(notificationEvent: SseEvent); isTicketNotification(): boolean; isBroadcastNotification(): boolean; isEventType(): boolean; isApiType(): boolean; }