import type { MaybeRef } from 'vue'; import { type PDFOptions, type PDFSrc, type PDFDocumentOptions } from '../utils/types'; import { type PDFDocumentProxy, type PDFPageProxy } from 'pdfjs-dist/types/src/display/api'; declare function usePdf(src: MaybeRef, options?: PDFOptions, workerUrl?: string, documentOptions?: PDFDocumentOptions, wasmUrl?: string): { pdfDocLoadingTask: import("vue").ShallowRef; getPage: (doc: PDFDocumentProxy, pageIndex: number) => Promise; }; export default usePdf;