import type { ArchitecturalViolation, BoundarySubgraph, NodeLookup } from "./types.js"; export declare function detectFanInSpikes(pre: BoundarySubgraph, post: BoundarySubgraph, threshold: number, lookup: NodeLookup): ArchitecturalViolation[]; export declare function parseThreshold(raw: string): number | null;