import type { SkillParentIndex } from "../catalog.js"; import { type ExecutableSurfaceInventory } from "../executable-surface-inventory.js"; import type { GraphReport } from "./graph.js"; /** Project repository evidence into the executable-specific graph view. */ export declare function executableGraphReport(report: GraphReport, inventory: ExecutableSurfaceInventory, skillParents: SkillParentIndex, focus?: string): GraphReport; /** Render the executable graph and its retained repository diagnostics. */ export declare function formatExecutableGraphMarkdown(report: GraphReport): string; /** Render the executable graph and diagnostics as deterministic Mermaid text. */ export declare function formatExecutableGraphMermaid(report: GraphReport): string;