interface Props { children?: import('svelte').Snippet<[{ percent: number; indeterminate: boolean; }]>; value?: number; max?: number; min?: number; indeterminate?: boolean; class?: string; indicatorClass?: string; id?: string; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-describedby'?: string; } declare const Progress: import("svelte").Component; type Progress = ReturnType; export default Progress;