import { NotificationAPI } from './NotificationAPI'; import { HttpClient } from '../../http'; declare const mockedNotificationId = "test-notification-id"; declare const mockedResultData: { has_more: boolean; notifications: { id: string; payload: { conversation: string; data: { qualified_user_ids: { domain: string; id: string; }[]; user_ids: string[]; }; from: string; qualified_conversation: { domain: string; id: string; }; qualified_from: { domain: string; id: string; }; time: string; type: string; }[]; }[]; time: string; }; declare const client: HttpClient; declare const notificationAPI: NotificationAPI; declare const getAllNotificationsResult: () => Promise<{ notifications: import("..").Notification[]; missedNotification?: string; }>; export { client, notificationAPI, getAllNotificationsResult, mockedResultData, mockedNotificationId }; //# sourceMappingURL=NotificationsAPI.mocks.d.ts.map