import PropTypes from 'prop-types'; /** * @param {{text: string}} props */ declare function HTMLComment(props: { text: string; }): JSX.Element; declare namespace HTMLComment { namespace propTypes { const text: PropTypes.Requireable; } } export { HTMLComment as default };