export declare class IndexedDB { private dbName; private idb; constructor(dbName: string); init(): Promise; getRawDB(): IDBDatabase | null; } export { IndexedDB as IndexedDBStore };