import type { FC } from "react"; import type { IFormattedValue } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент форматированного числа * @returns {ReactElement} */ declare const FormattedValue: FC; export type { IFormattedValue }; export { FormattedValue };