import * as react from 'react'; import { ComponentProps } from 'react'; import { HTMLMotionProps, MotionConfig } from 'motion/react'; type AnimateNumberProps = Omit, "children"> & { children: number | bigint | string; locales?: Intl.LocalesArgument; format?: Omit & { notation?: Exclude; }; transition?: ComponentProps["transition"]; suffix?: string; prefix?: string; }; declare const AnimateNumber: react.ForwardRefExoticComponent & react.RefAttributes>; export { AnimateNumber, type AnimateNumberProps };