import type { ParsedPage, RuleResult } from "../../types.js"; export interface PairMatch { leftUrl: string; rightUrl: string; similarity: number; } export declare function nearDuplicateRule(pages: ParsedPage[], threshold: number): { findings: RuleResult[]; pairs: PairMatch[]; }; //# sourceMappingURL=near-duplicate.d.ts.map