import { Color } from '../../interfaces'; export declare type AnimatedCounterLabelProps = { number: number; inactiveColor?: Color; activeColor?: Color; }; export declare const AnimatedCounterLabel: ({ number }: AnimatedCounterLabelProps) => JSX.Element;