import type { SmartDocument } from "smartrte-core/foundation"; /** * The only genuinely browser-specific piece of PDF export: opening a print * window is a windowing operation, not format logic, so it stays here * rather than in packages/core. buildPdfPrintDocument (the actual HTML * content) is framework-agnostic and lives in core. */ export declare const printSmartDocumentAsPdf: (document: SmartDocument, hostWindow: Window, delayMs?: number) => boolean;