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