import { type Ref } from 'vue';
import type { PDFDocumentProxy } from 'pdfjs-dist';
import type { UsePdfCommentsReturn, ViewerPdfPage } from '@/utils/types';
declare const usePdfComments: (pdfDocProxy: Ref<PDFDocumentProxy | undefined>, pdfPages: Ref<ViewerPdfPage[]>) => UsePdfCommentsReturn;
export default usePdfComments;
