import type { FC } from "react"; import type { IComponentBaseProps } from "../../types/index.d.mts"; import type { IHTMLComment } from "./config/types/index.d.mts"; /** * Комментарий, выводимый в HTML-разметку * @returns {ReactElement} */ declare const HTMLComment: FC; export type { IHTMLComment }; export { HTMLComment };