import type { FC } from "react"; import type { IFormatText } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/index.d.mts"; /** * Компонент форматированного текста * @returns {ReactNode} */ declare const FormatText: FC; export type { IFormatText }; export { FormatText };