/** * Deterministic Markdown builder from structured documentation * * This module takes structured JSON documentation and builds consistent, * well-formatted Markdown output using templates. This approach eliminates * JSON artifacts and ensures all documentation follows the same format. */ import type { DocumentationStructure } from './structured-schema'; /** * Build Markdown documentation from structured data * * This is the core function that converts JSON structure to Markdown. * The template is deterministic - the same input always produces the same output. */ export declare function buildMarkdownFromStructure(doc: DocumentationStructure): string; /** * Build markdown for multiple symbols (used in batch generation) */ export declare function buildBatchMarkdown(docs: DocumentationStructure[]): Array<{ symbolName: string; content: string; }>; //# sourceMappingURL=markdown-builder.d.ts.map