import type { ProductGraph } from '../graph/graph-types.js'; import type { ResolvedDocsConfig } from '../config/config.js'; export interface DocFile { readonly path: string; readonly content: string; } /** * Generate human-readable markdown docs from a product graph. * Returns the files to write — caller can use `writeDocs()` for I/O. */ export declare function generateDocs(graph: ProductGraph, config: ResolvedDocsConfig, root: string): DocFile[]; /** * Write generated doc files to disk with atomic writes. * Cleans up stale .md files that no longer correspond to modules. */ export declare function writeDocs(files: DocFile[], outputDir: string, root: string): void; //# sourceMappingURL=doc-renderer.d.ts.map