interface LabeledProgressProps { label: string; value: number; max?: number; helper?: string; showValue?: boolean; class?: string; } declare const LabeledProgress: import("svelte").Component; type LabeledProgress = ReturnType; export default LabeledProgress;