import { IndexedDb } from "./index"; import { ConferenceTagEntity } from "../data/conference/Conference"; export declare class ConferenceTagDb { private indexedDb; constructor(indexedDb: IndexedDb); getAllConferenceTags(): Promise; getById(tagId: string): Promise; saveAllConferenceTags(conferenceTags: ConferenceTagEntity[]): Promise; saveConferenceTag(conferenceTag: ConferenceTagEntity): Promise; deleteById(tagId: string): Promise; drop(): Promise; }