import { IndexedDb } from './index'; import { ShortPollingNotificationEntity } from "../data/ShortPollingNotification"; export declare class ShortPollingNotificationDb { private indexedDb; constructor(indexedDb: IndexedDb); saveNotification(notification: ShortPollingNotificationEntity): Promise; saveAllNotifications(notifications: ShortPollingNotificationEntity[]): Promise; deleteNotification(notificationId: string): Promise; deleteAllNotifications(): Promise; getById(objectId: string): Promise; getAll(): Promise; drop(): Promise; }