export type PdfInput = { title: string; markdown: string; filename?: string; }; export declare function generatePdfDocument(input: PdfInput): Promise<{ path: string; format: "pdf"; pageEstimate: number; }>; //# sourceMappingURL=pdf.d.ts.map