/** * Generate Obsidian-compatible markdown with [[wikilinks]] for the audit report. * Single file output — open in Obsidian for clickable dependency navigation. */ import type { IndexFiles } from "../indexer/index-files.js"; import type { IndexCode } from "../indexer/index-code.js"; import type { IndexGraph } from "../indexer/index-graph.js"; import { type AuditAnalysis } from "./audit-analysis.js"; export declare function generateAuditObsidian(indexer: IndexFiles & IndexCode & IndexGraph, analysis: AuditAnalysis, projectName: string): string;