export type DocxIdentityProbeResult = { /** The package as re-saved by LibreOffice's DOCX export filter. */ savedPackage: Buffer; }; export type DocxPdfProbeResult = { pdf: Buffer; }; /** * Load→save a complete generated package through LibreOffice's DOCX filter. * Throws when LibreOffice cannot load the package (no output is produced). */ export declare function probeDocxIdentity(generated: Buffer, soffice?: string | null): Promise; /** Render a generated package to PDF headlessly — the headless-renderer probe. */ export declare function probeDocxToPdf(generated: Buffer, soffice?: string | null): Promise; //# sourceMappingURL=generation-probes.d.ts.map