import { Block, NormalizedBlock } from "./types.js"; //#region src/docReview/normalizeBlock.d.ts /** * Derive the normalized representations of a block used for matching. * * - `semanticText`: markdown-stripped, lower-cased text (used to detect identical * content across versions of the same language). * - `anchorText`: only digits/symbols (used to align blocks across languages, as * prose differs but structure such as numbers and punctuation is preserved). * * @param block - The block to normalize. * @returns The block enriched with its normalized texts. */ export declare const normalizeBlock: (block: Block) => NormalizedBlock; //#endregion //# sourceMappingURL=normalizeBlock.d.ts.map