export interface MazAnimatedCounterProps { /** * The number to animate */ count: number; /** * Duration of the animation in milliseconds * @default 1000 */ duration?: number; /** * Suffix to display next to the number */ prefix?: string; /** * Suffix to display next to the number */ suffix?: string; /** * Delay before the animation starts in milliseconds * @default 100 */ delay?: number; /** * Play the animation only once * @default true */ once?: boolean; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { prefix?(_: {}): any; prefix?(_: {}): any; suffix?(_: {}): any; suffix?(_: {}): any; }; refs: { elementRef: HTMLSpanElement; }; rootEl: HTMLSpanElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { elementRef: HTMLSpanElement; }, HTMLSpanElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };