import { Notification } from '@wireapp/api-client/lib/notification/'; import { APIClient } from '@wireapp/api-client'; export declare class NotificationBackendRepository { private readonly apiClient; constructor(apiClient: APIClient); getAllNotifications(clientId?: string, lastNotificationId?: string, abortController?: AbortController): Promise<{ notifications: Notification[]; missedNotification?: string; }>; getLastNotification(clientId?: string): Promise; } //# sourceMappingURL=NotificationBackendRepository.d.ts.map