/** * @file DOCX 渲染器 * @description 使用 docx 库将结构化文档数据渲染为 .docx 文件 */ import type { BlockDefinition, DocumentOptions, RenderResult } from './types.js'; /** 渲染 DOCX */ export declare function renderDocx(data: { title: string; theme?: string; blocks: BlockDefinition[]; options?: DocumentOptions; filename?: string; }, templatesDir?: string): Promise; //# sourceMappingURL=docx-renderer.d.ts.map