import { Document } from '../types'; export declare class IndexedDB { private static db; private static store; private static dbVersion; private static dbName; private static dbStore; private static open; static load(params: { name?: string; store?: string; version?: number; }): Promise; static get(key: string): Promise; static set(key: string, value: T): Promise; static unset(key: string): Promise; static clear(): Promise; }