export interface HighlightMatchProps {
    str?: string;
    highlightText?: string;
}
export default function HighlightMatch({ str, highlightText }: HighlightMatchProps): JSX.Element;
