export type GoalProgressTone = 'brand' | 'success' | 'warning'; interface GoalProgressProps { label: string; current: number; target: number; unit?: string; tone?: GoalProgressTone; showTrend?: boolean; class?: string; } declare const GoalProgress: import("svelte").Component; type GoalProgress = ReturnType; export default GoalProgress;