import { FC } from '@dineug/r-html'; import { findAll } from 'highlight-words-core'; export type HighlightedTextProps = Parameters[0] & { searchWords: string[]; textToHighlight: string; }; declare const HighlightedText: FC; export default HighlightedText;