import { Ref } from 'vue'; /** * Composable for bolding search query matches in text * @param searchTerm - Reactive search term (Ref) * @returns Function that takes text and returns HTML with matched query bolded */ export declare function useBoldQuery(searchTerm: Ref): { boldQuery: (text: string) => string; };