import { AuthService } from '@bidi/common-services'; import { Store } from '@ngrx/store'; import { Observable } from 'rxjs'; import { Notification } from '../../models'; import { State } from './ngrx/reducers'; export declare class NotificationService { private environment; private auth; private store; static featureName: string; private subscription; private stomp; constructor(environment: any, auth: AuthService, store: Store); private state$; list$: Observable; toastsList$: Observable; unread$: Observable; onMessage: (message: any) => void; unsubscribe(): void; hideToast(toast: Pick): void; }