interface HighliterProps { text: string; mark: string; color?: string; backgroundColor?: string; } declare const Highlighter: ({ text, mark, color, backgroundColor }: HighliterProps) => import("react").DetailedReactHTMLElement, HTMLElement> | import("react").FunctionComponentElement; export { Highlighter };