import { IndexedDb } from "./index"; import { CustomStatusEntity } from "../data/CustomStatus"; export declare class CustomStatusDb { private indexedDb; constructor(indexedDb: IndexedDb); saveAllCustomStatus(customStatuses: CustomStatusEntity[]): Promise; saveCustomStatus(customStatus: CustomStatusEntity): Promise; deleteCustomStatus(customStatusId: string): Promise; getAllCustomStatus(): Promise; getById(customStatusId: string): Promise; deleteByCustomStatusIds(customStatusIds: string[]): Promise; drop(): Promise; }