/// import { EventEmitter } from "events"; import { INotification } from "./interfaces"; declare class NotificationsManager extends EventEmitter { listNotify: INotification[]; create(notification: INotification): void; remove(notification: INotification): void; emitChange(): INotification[]; addEvtListener(callback: (notifications: INotification[]) => void): void; removeEvtListener(callback: (notifications: INotification[]) => void): void; } declare const _default: NotificationsManager; export default _default;