import { ILoadMessages, IMessage, IUpdateNotificationStatus, IUpdateNotificationIsPinned } from './interfaces'; import { BaseApiClient } from '../BaseApiClient'; export declare class NotificationsApi extends BaseApiClient { constructor(appName: string); /** * Get notifications */ getNotifications: (params: ILoadMessages) => Promise>; /** * Update notification status */ updateNotificationStatus: (params: IUpdateNotificationStatus) => Promise; /** * Update notification pin status */ updateNotificationIsPinned: (params: IUpdateNotificationIsPinned) => Promise; /** * Mark all notifications as read */ markAllAsRead: () => Promise; } declare const _default: NotificationsApi; export default _default;