interface AnimatedCounterProps { /** The target number to animate to */ value: number; /** Animation duration in seconds (default: 0.6) */ duration?: number; /** Format function for the displayed number (default: Math.round + toLocaleString) */ format?: (n: number) => string; className?: string; } /** * Smoothly animates a number from its previous value to a new value. * Uses spring physics for natural-feeling counting. */ export declare function AnimatedCounter({ value, duration, format, className, }: AnimatedCounterProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=AnimatedCounter.d.ts.map