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