import { IndexedDBStoreSchema } from "../models/IndexedDBStoreSchema"; export declare class HelperUtils { static getDatabaseVersion(dbName: string): Promise; static getIndexedDBStoreSchemaPrimaryKeys(storeSchema: IndexedDBStoreSchema): string[]; static promisifyIndexedDBRequest(request: IDBRequest, resolveMethod: string, rejectMethod?: string): Promise; }