export declare class IndexedDBHelper { private storage; constructor(dbName: string, storeName: string); init(): Promise; storeData(value: any): Promise; storeDataBatch(dataArray: any[]): Promise; storeDataRemoveBatch(Array: any[]): Promise; readData(key: string): Promise; readDataBatch(keys: string[]): Promise<{ key: string; value: unknown; }[]>; getAllData(): Promise; hasData(): Promise; deleteTable(): Promise; clear(): Promise; } //# sourceMappingURL=utils.d.ts.map