import { Dialog } from "fwtoolkit"; export interface PdfExportPrintOptions { cropMarks: boolean; trimBox: boolean; bleedBox: boolean; bleedMm: number; linkAnnotationBorders: boolean; rasterizeSvgs: boolean; } export interface PdfExportDialogResult { /** Resolve all tracked changes (accept all) before exporting. When false, the tracked changes are kept and rendered in the PDF. */ resolveTrackChanges: boolean; /** Embed a .fidus file of the document as a PDF attachment. */ embedFidusFile: boolean; /** Place figures as page floats (moved to the top of the page). */ figurePageFloats: boolean; /** Place tables as page floats (moved to the top of the page). */ tablePageFloats: boolean; /** Print-production options passed to the vivliostyle-pdf emitter. */ printOptions: PdfExportPrintOptions; } export declare class PdfExportDialog { dialog: Dialog | false; constructor(); init(): Promise; } //# sourceMappingURL=pdf_export.d.ts.map