import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type HighlightProps = { className?: string; data?: { [key: string]: string; }; id?: string; children?: React.ReactChild[] | React.ReactChild | string; text?: string; highlightedText?: string[]; } & GlobalProps; declare const Highlight: (props: HighlightProps) => React.ReactElement; export default Highlight;