/** * Attack graph engine (v4.7). * * Builds a directed graph of relationships between repos, packages, * workflows, secrets, and IOCs. Identifies exploitable attack paths * from entry points to impact. */ import type { Finding, AttackGraph } from "./types.js"; /** * Build an attack graph from scan findings. */ export declare function buildAttackGraph(findings: Finding[], target: string): AttackGraph; /** * Export attack graph as Mermaid diagram. */ export declare function exportGraphMermaid(graph: AttackGraph): string; //# sourceMappingURL=attack-graph.d.ts.map