/** * Renders all pages of a PDF document into the page view container. * * Iterates through every page in the document, creates a page node with a canvas * for each, appends it to the `[data-element="pageView"]` container, and renders * the page content using pdf.js. Pages are rendered sequentially to avoid * excessive memory usage from concurrent canvas operations. * * @param pdfDocument - The pdf.js document proxy obtained from `pdfjsLib.getDocument()`. * @param zoomFactor - The zoom factor to apply to each page (defaults to `1`). * @returns An array of pdf.js page proxy objects for all rendered pages. */ declare const _default: (pdfDocument: any, zoomFactor?: number) => Promise; export default _default;