import { MotionConfig, type HTMLMotionProps } from "motion/react"; import { ComponentProps } from "react"; export declare const DEFAULT_TRANSITION: { readonly opacity: { readonly duration: 1; readonly ease: (t: number) => number; }; readonly layout: { readonly type: "spring"; readonly duration: 1; readonly bounce: 0; }; readonly y: { readonly type: "spring"; readonly duration: 1; readonly bounce: 0; }; }; export type AnimateNumberProps = Omit, "children"> & { children: number | bigint | string; locales?: Intl.LocalesArgument; format?: Omit & { notation?: Exclude; }; transition?: ComponentProps["transition"]; suffix?: string; prefix?: string; }; export declare const AnimateNumber: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;