import { default as React } from 'react'; export interface FormattedNumberProps { /** Number value to format */ value: number; /** Number style */ style?: 'decimal' | 'currency' | 'percent' | 'unit'; /** Currency code (for currency style) */ currency?: string; /** Unit to display (for unit style) */ unit?: string; /** Minimum fraction digits */ minimumFractionDigits?: number; /** Maximum fraction digits */ maximumFractionDigits?: number; /** Locale */ locale?: string; /** Notation (compact for abbreviations like 1.2K) */ notation?: 'standard' | 'compact'; /** Additional className */ className?: string; } /** * FormattedNumber Component * * Formats numbers using Intl.NumberFormat with various styles and locales. * Supports currencies, percentages, units, and compact notation. * * @example * ```tsx * * * * ``` * * @example * ```tsx * * * ``` */ export declare const FormattedNumber: React.FC; //# sourceMappingURL=formatted-number.d.ts.map