import { IndexedDB } from './IndexedDB'; export declare class LocalStore { private indexedDB; private inMemoryCache; private inMemoryServerBase; private currentSequence; constructor(indexedDB: IndexedDB); nextMutationSequence(): Promise; getServerBaseCache(): Record; set(path: string, data: any): Promise; getInMemory(path: string): any; getMemoryCache(): Record; get(path: string): Promise; delete(path: string): Promise; loadAll(): Promise>; garbageCollect(maxItems?: number): Promise; }