import type { Snippet } from 'svelte'; interface RadialProgressProps { value?: number; max?: number; size?: number; strokeWidth?: number; color?: string; trackColor?: string; /** Show centered percentage */ showValue?: boolean; /** Warn color when remaining (max-value) <= threshold — useful for timers */ warnBelow?: number; warnColor?: string; class?: string; children?: Snippet; } declare const RadialProgress: import("svelte").Component; type RadialProgress = ReturnType; export default RadialProgress;