import { default as React } from 'react'; declare const STAT_VALUE_SIZE: { readonly md: { readonly value: "text-2xl"; readonly secondary: "text-base"; }; readonly lg: { readonly value: "text-4xl"; readonly secondary: "text-xl"; }; }; type StatValueSize = keyof typeof STAT_VALUE_SIZE; interface StatValueProps { value: React.ReactNode; total?: React.ReactNode; unit?: string; label?: React.ReactNode; size?: StatValueSize; className?: string; } declare const StatValue: React.FC; export default StatValue; export type { StatValueProps, StatValueSize }; //# sourceMappingURL=StatValue.d.ts.map