/** * Highlights text matches in a string by wrapping them in mark elements * * @param text - The text to search * @param regex - The pattern to match and highlight * @param markClassName - CSS class(es) to apply to the mark elements * @returns DocumentFragment with text nodes and optionally mark elements for matches */ export declare function highlightTextMatches(text: string, regex: RegExp, className: string): DocumentFragment; //# sourceMappingURL=highlightTextMatches.d.ts.map