import type { FC, PropsWithChildren } from 'react'; interface HighlightValueProps { filterValue: string; 'data-testid'?: string; } declare const HighlightValue: FC>; export default HighlightValue;