import React from "react";
import { type Transition } from "motion/react";
interface Props {
    className?: string;
    animateToNumber: number;
    fontStyle?: React.CSSProperties;
    transitions?: (index: number) => Transition;
    useThousandsSeparator?: boolean;
    locale?: string;
}
declare const AnimatedNumber: ({ className, animateToNumber, fontStyle, transitions, useThousandsSeparator, locale, }: Props) => React.JSX.Element;
export default AnimatedNumber;
