import type { DocumentationModel } from '../model/types.js'; import type { RenderResult } from './types.js'; /*** * Renders the documentation model into README and artifact files. */ export declare function render(model: DocumentationModel, options?: { outputDir?: string; }): RenderResult;