export interface ProvenanceTimelinePatch { readonly lamport: number; readonly ops: readonly unknown[]; } export interface ProvenanceTimelinePort { readonly patchesFor: (entityId: string) => Promise; readonly loadPatchBySha: (sha: string) => Promise; } export declare function assertProvenanceTimelinePort(impl: unknown): asserts impl is ProvenanceTimelinePort; //# sourceMappingURL=provenance-timeline.d.ts.map