export interface CachedEntry_Core { docId: string; hash: string; data: any; } interface CachedEntry extends CachedEntry_Core { tablePlusDocId: string; table: string; } export declare class EntryCache { private onInitHandlers; EnsureInitDone(): Promise; private db; Init(): Promise; UpdateTableEntries(table: string, entries: Array): Promise; GetCachedEntries(table: string): Promise>; ClearCache(): Promise; ClearTableCache(table: string): Promise; } export declare const entryCache: EntryCache; export {};