import type { ReactElement } from "react"; export interface HighlighterProps { matchPattern?: RegExp | string; text?: string; } export declare const Highlighter: (props: HighlighterProps) => ReactElement;