import { CommitDoc, DocCache } from './TrimergeClientOptions'; /** Simple implementation that just wraps a Map. */ export declare class InMemoryDocCache implements DocCache { private readonly docs; get(ref: string): CommitDoc | undefined; set(ref: string, doc: CommitDoc): void; has(ref: string): boolean; delete(ref: string): void; }