/** * Merges multiple PDFs into a single PDF document. * @param paths Array of absolute paths to the generated PDFs * @param outputPath The path where the merged PDF should be saved */ export declare function mergePDFs(paths: string[], outputPath: string): Promise;