import React from "react"; interface HighlightTextProps { /** Text to be highlighted */ text: string; children: string; } declare const HighlightText: ({ text, children }: HighlightTextProps) => string | React.JSX.Element; export { HighlightText };