import React from "react";
interface HighlightTagProps {
    children: React.ReactNode;
}
declare const HighlightTag: ({ children }: HighlightTagProps) => React.JSX.Element;
export default HighlightTag;
export { HighlightTagProps };
