import { AppTable } from './config'; import Dexie from 'dexie'; export declare class DexieHelper { static runTransactionDB(tables: AppTable[], func: (db: Dexie) => Promise): Promise; static runTransaction(db: Dexie, tables: AppTable[], func: (db: Dexie) => Promise): Promise; static getDB(func: (db: Dexie) => Promise): Promise; }