export type PdfContentFormat = "text" | "html" | "markdown" | "lexical_json"; export interface RenderPdfDocumentInput { title?: string | null; content: string; format?: PdfContentFormat; metadataLines?: string[]; } export declare function renderPdfDocument(input: RenderPdfDocumentInput): Promise; //# sourceMappingURL=pdf-renderer.d.ts.map