interface Props { /** The target number to animate to */ value: number | string; /** Animation duration in milliseconds */ duration?: number; /** CSS class for the container */ class?: string; } declare const AnimatedCounter: import("svelte").Component; type AnimatedCounter = ReturnType; export default AnimatedCounter;