import type { JSX } from 'react'; export interface HighlightedTextProps { text: string; query?: string; className?: string; } export declare function HighlightedText({ text, query, className }: HighlightedTextProps): JSX.Element;