import type { IndexFiles } from "../indexer/index-files.js"; import type { IndexCode } from "../indexer/index-code.js"; import type { IndexGraph } from "../indexer/index-graph.js"; export interface WikiOptions { outputDir: string; format: "markdown" | "html"; includeGraph?: boolean; } /** * Generate a markdown wiki from the indexed codebase. * Entirely deterministic — no LLM calls. All data comes from * the Indexer's stores (files, chunks, graph, symbol refs, PageRank). */ export declare function generateWiki(indexer: IndexFiles & IndexCode & IndexGraph, options: WikiOptions): Promise;