import React from 'react'; export interface HighlightedParagraphProps { children: React.ReactNode; icon?: string; } declare const HighlightedParagraph: ({ children, icon }: HighlightedParagraphProps) => JSX.Element; export default HighlightedParagraph;