/** * Prints a PDF document by loading it into a hidden iframe and invoking the browser print dialog. * * The PDF is loaded into the existing `[data-element="printFrame"]` iframe. * Once the iframe finishes loading, `window.print()` is called on the iframe's content window. * * @param documentUrl - The URL of the PDF document to print. * @returns A promise that resolves after the print dialog has been invoked. */ declare const _default: (documentUrl: string) => Promise; export default _default;