import type { CountUpProps } from '../index';
export declare const DEFAULT_START = 0;
export declare type ReturnValue = number | string | React.ReactNode;
export declare const useFormattedValue: (rawValue: number, { start, end, decimalPlaces, prefix, suffix, }: CountUpProps) => string;