import * as react from 'react'; import { CSSProperties } from 'react'; interface AnimatedNumberProps { value: number; /** Count duration in ms. Default motion.celebrate (500). */ duration?: number; /** Render the interpolated value. Default rounds to an integer string. */ format?: (n: number) => string; className?: string; style?: CSSProperties; } declare function AnimatedNumber({ value, duration, format, className, style, }: AnimatedNumberProps): react.JSX.Element; export { AnimatedNumber, type AnimatedNumberProps };