import './Stats.css'; import React from 'react'; import { FormatValue } from "../../types"; import { FormatRate, IconTitle } from './helpers'; export declare const Stats: React.ForwardRefExoticComponent & { value: number | null; placeholder?: string | undefined; title?: string | undefined; iconTitle?: IconTitle | undefined; unit?: string | undefined; rate?: string | undefined; iconArrowRate?: "auto" | "up" | "down" | undefined; status?: "system" | "success" | "warning" | "error" | undefined; layout?: "reversed" | "default" | undefined; size?: "s" | "xs" | "m" | "2xs" | "l" | undefined; formatValue?: FormatValue | undefined; formatRate?: FormatRate | undefined; children?: undefined; } & React.RefAttributes>;