import { type HTMLMotionProps } from 'motion/react';
type AnimatedNumberProps = Omit, 'children' | 'onAnimationComplete' | 'onAnimationStart'> & {
value: number;
mass?: number;
stiffness?: number;
damping?: number;
precision?: number;
format?: (value: number) => string;
onAnimationStart?: () => void;
onAnimationComplete?: () => void;
};
declare const AnimatedNumber: ({ value, mass, stiffness, damping, precision, format, onAnimationStart, onAnimationComplete, ...props }: AnimatedNumberProps) => import("react/jsx-runtime").JSX.Element;
export { AnimatedNumber };
export type { AnimatedNumberProps };