import { IndexedDb } from "./index"; import { NotificationEntity } from "../data/Notification"; export declare class NotificationDb { private indexedDb; constructor(indexedDb: IndexedDb); getById(objectId: string): Promise; saveAllNotifications(notifications: NotificationEntity[]): Promise; drop(): Promise; }