import { type ElementType, PureComponent, type ReactNode } from 'react'; interface Props { text: string; words: string | string[]; highlightClassName?: string; tagName?: ElementType; } export declare class HighlightWords extends PureComponent { render(): ReactNode; } export {};