import { IndexedDb } from "./index"; import { DashboardStructureEntity } from "../data/dashboard/DashboardStructure"; export declare class DashboardStructureDb { private indexedDb; constructor(indexedDb: IndexedDb); getAllDashboardStructures(): Promise; saveAllDashboardStructures(dashboardStructures: DashboardStructureEntity[]): Promise; getById(objectId: string): Promise; deleteById(objectId: string): Promise; deleteAll(): Promise; drop(): Promise; }