import { DIAGNOSTIC_IDS } from "./diagnostic-ids.js"; import type { Finding } from "./types/diagnostics.js"; import type { ParsedDocument } from "./types/metadata.js"; type RepeatedContextFindingId = typeof DIAGNOSTIC_IDS.MAINT_REPEATED_SECTION | typeof DIAGNOSTIC_IDS.MAINT_REPEATED_HEADING | typeof DIAGNOSTIC_IDS.MAINT_REPEATED_CODE_BLOCK | typeof DIAGNOSTIC_IDS.MAINT_REPEATED_LINK | typeof DIAGNOSTIC_IDS.MAINT_REPEATED_CONTEXT_PATTERN; export declare function repeatedContextFindingCap(id: RepeatedContextFindingId): number; export declare function detectRepeatedContextPatterns(documents: ParsedDocument[]): Finding[]; export {};