import { ApolloClient } from 'apollo-client'; import { InMemoryCache } from 'apollo-cache-inmemory'; import { INotificationsService, INotification_input } from '@workbench-stack/core'; export declare class NotificationService implements INotificationsService { protected client: ApolloClient; protected cache: InMemoryCache; constructor(client: ApolloClient, cache: InMemoryCache); addNotification(notification: INotification_input): boolean; closeNotification(index: number): boolean; }