export declare class NotificationHandlerService { private _notificationMap; getNotificationNumber(): number; getNotifications(): Array; push(item: T): string; remove(item: T): void; pushAll(itens: Array): Array; removeById(id: string): void; hasItemById(id: string): boolean; hasItem(item: T): boolean; getById(id: string): T; }