import { QUERY_PAGINATED_RESULT, Repository } from "./index"; import { ShortPollingNotificationEntity } from "../data/ShortPollingNotification"; import { ShortPollingNotificationScope } from "../service/shortPollingNotificationService"; import { AuthenticationService } from "../service/authenticationService"; import { IndexedDb } from "../db"; import { Logger } from "../utils/logger"; interface Args { account?: string; syncToken?: string; scope?: ShortPollingNotificationScope[]; notificationId?: string; } export declare class ShortPollingNotificationRepository extends Repository { private notificationDb; private notificationService; constructor(authenticationService: AuthenticationService, indexedDb: IndexedDb, baseURL: string, logger?: Logger); getAllNotifications(bearer: string, account: string, syncToken?: number, scope?: ShortPollingNotificationScope[]): Promise>; getLocalNotifications(): Promise; protected remoteCreate(bearer: string, args: Args, item: ShortPollingNotificationEntity): Promise; protected remoteDelete(bearer: string, args: Args): Promise; protected remoteGet(bearer: string, args: Args): Promise; protected remoteList(bearer: string, args: Args): Promise; protected remoteUpdate(bearer: string, args: Args, item: ShortPollingNotificationEntity): Promise; protected localBulkDelete(items: ShortPollingNotificationEntity[]): Promise; protected localBulkSave(args: Args, items: ShortPollingNotificationEntity[]): Promise; protected localDelete(args: Args): Promise; protected localGet(args: Args): Promise; protected localList(args: Args): Promise; private checkNullable; } export {};