import { type PropsWithChildren } from 'react'; import type { StylingProps } from '../../../core/types/styling-props.js'; /** * Helper function to either create or receive a registered Highlight. */ export declare function getOrCreateNamedHighlight(highlightName: string): Set | Highlight; /** * Creates a local range array that has been added to the highlights and returns it. * @internal */ export declare function createRangedHighlights(targetElements: Array, term: string, highlight: Set | Highlight): Array; /** * @internal */ export declare function CSSHighlight(props: Readonly>): import("react/jsx-runtime").JSX.Element;