import { ShallowRef } from 'vue'; import type { PDFDocumentProxy } from 'pdfjs-dist'; import type { SearchControlValue, HighlightOptions } from '@/utils/types'; declare const useSearch: (pdfDoc: ShallowRef, initialSearch?: string, options?: ShallowRef) => SearchControlValue; export default useSearch;