import type { ParsedPage, RuleResult } from "../../types.js"; /** * Flags clusters (same parent directory) with 2+ pages that are siloed: no outbound * internal crawl link to another cluster and no inbound from another cluster. */ export declare function clusterConnectivityRule(pages: ParsedPage[], knownUrls: Set, /** * 2026-06-16 calibration FP fix: cross-cluster links routinely target pages * that were not fetched on a sampled crawl, so a "siloed cluster" verdict is * unreliable. Only run on a full crawl. */ sampled?: boolean): RuleResult[]; //# sourceMappingURL=cluster-connectivity.d.ts.map