import { NotificationsStore } from './notifications.store'; import { NotificationAlertTypes } from './notification.model'; import { ID } from '@datorama/akita'; export declare class NotificationTrayService { private notificationsStore; constructor(notificationsStore: NotificationsStore); push(message: string, title?: string, alertClass?: NotificationAlertTypes): void; delete(id: ID): void; }