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