import HttpClient from "./index"; import { ShortPollingNotificationContainerDto } from "../data/ShortPollingNotification"; export declare enum ShortPollingNotificationScope { APPOINTMENT = "appointment", REPORT = "report" } export declare class ShortPollingNotificationService extends HttpClient { getNotifications(bearer: string, account: string, syncToken?: number, scope?: ShortPollingNotificationScope[]): Promise; }