import type { Cache } from '../../cache/cache'; import type { ClientPlugin } from '../documentStore'; export type CallbackMap = Record void>>; export type KeyMap = Record>; type OptimisticObjectIDMap = Record>; export declare const optimisticKeys: (cache: Cache, callbackCache?: CallbackMap, keyCache?: KeyMap, objectIDs?: OptimisticObjectIDMap, invocationCounter?: number) => ClientPlugin; export {};