/** * Creates a local range array that is added to the highlight and returns it. * @param targetElement - The element to search within. * @param terms - The terms to highlight. * @param caseSensitive - Whether the search is case-sensitive. * @param highlight - The Highlight instance to add the ranges to. * @returns An array of ranges that were added to the highlight. * @internal */ export declare function createRangedHighlights(targetElement: HTMLElement, terms: string[], caseSensitive: boolean, highlight: Set | Highlight): Range[];