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