import { FunctionalComponent } from 'vue';
import type { TimeredCounterString as WCTimeredCounterString } from '../../timered-counter-string.js';
import '../../timered-counter-string.js';
type ComponentProps = Pick<WCTimeredCounterString, 'animationOptions' | 'keyframes' | 'cellStyles' | 'digitStyles' | 'partStyles' | 'color' | 'partsOptions' | 'value' | 'oldValue' | 'initialValue' | 'locale'>;
type Events = {
    'timeredCounterAnimationStart'(): void;
    'timeredCounterAnimationEnd'(): void;
};
type Slots = {
    prefix: () => any;
    suffix: () => any;
};
export declare const TimeredCounterString: FunctionalComponent<ComponentProps, Events, Partial<Slots>>;
export {};
