import type * as PdfNs from 'pdfjs-dist'; import type { PDFLinkService as PDFLinkServiceCtor } from 'pdfjs-dist/web/pdf_viewer'; export type PdfLib = typeof PdfNs; export type PdfLinkServiceCtor = typeof PDFLinkServiceCtor; export declare function loadPdf(): Promise<{ pdf: PdfLib; PDFLinkService: PdfLinkServiceCtor; }>;