import type { INotification } from '../domain'; export interface IAppNotifications { application: string; [key: string]: INotification[] | string; } export declare class AppNotificationsService { static getNotificationsForApplication(applicationName: string): PromiseLike; static saveNotificationsForApplication(applicationName: string, notifications: IAppNotifications): PromiseLike; }