import { FingerprintedBlock, NormalizedBlock } from "./types.js"; //#region src/docReview/fingerprintBlock.d.ts /** * Compute content and context digests for a normalized block. * * The context key (digest of the surrounding blocks) lets the planner tell apart * two blocks that share the same content but live in different sections. * * @param block - The block to fingerprint. * @param previousBlock - The block immediately before, or `null` at the start. * @param nextBlock - The block immediately after, or `null` at the end. * @returns The block enriched with its digests. */ export declare const fingerprintBlock: (block: NormalizedBlock, previousBlock: NormalizedBlock | null, nextBlock: NormalizedBlock | null) => FingerprintedBlock; //#endregion //# sourceMappingURL=fingerprintBlock.d.ts.map