import { type NumberFlowElement, type NumberFlowProps } from '@number-flow/react';
import React from 'react';
type AnimatedDollarValueProps = Omit<NumberFlowProps, 'format'> & {
    ref?: React.Ref<NumberFlowElement>;
    dynamicMinFractionDigits?: boolean;
};
export declare const AnimatedDollarValue: React.ForwardRefExoticComponent<Omit<AnimatedDollarValueProps, "ref"> & React.RefAttributes<NumberFlowElement>>;
export {};
