import React from 'react'; interface HighlightMatchProps { str?: string; highlightText?: string; labelRef?: React.RefObject; } export default function HighlightMatch({ str, highlightText, labelRef }: HighlightMatchProps): JSX.Element; export {};