import { type INotificationsQuery } from "./query.js"; /** * This service provides access to organization notifications. * * @public */ export interface IOrganizationNotificationService { /** * Mark notification as read * * @param notification - definition of the notification * @returns Promise resolved with updated notification. */ markNotificationAsRead(notificationId: string): Promise; /** * Mark all notifications as read */ markAllNotificationsAsRead(): Promise; /** * Query list of notifications */ getNotificationsQuery(): INotificationsQuery; } //# sourceMappingURL=index.d.ts.map