import { QUERY_RESULT, QUERY_TYPE, Repository } from "./index"; import { AuthenticationService } from "../service/authenticationService"; import { IndexedDb } from "../db"; import { Logger } from "../utils/logger"; import { NotificationEntity } from "../data/Notification"; interface Args { account: string; companyId: string; notificationId: string; } export declare class NotificationRepository extends Repository { private notificationDb; private notificationService; constructor(authenticationService: AuthenticationService, indexedDb: IndexedDb, baseURL: string, logger?: Logger); getNotification(bearer: string, account: string, companyId: string, notificationId: string, mode?: QUERY_TYPE): Promise>; protected remoteList(bearer: string, args: Args): Promise; protected remoteGet(bearer: string, args: Args): Promise; protected remoteCreate(bearer: string, args: Args, item: NotificationEntity): Promise; protected remoteUpdate(bearer: string, args: Args, item: NotificationEntity): Promise; protected remoteDelete(bearer: string, args: Args): Promise; protected localList(args: Args): Promise; protected localGet(args: Args): Promise; protected localBulkSave(args: Args, items: NotificationEntity[]): Promise; protected localBulkDelete(items: NotificationEntity[]): Promise; protected localDelete(args: Args): Promise; } export {};