import { type ProgressBarStage } from '../../progress-bar'; type Props = { label: string; /** Current stage index, 0-based. Stages 0..stage (inclusive) are filled. */ stage: number; /** * Stage descriptors — at minimum `{ color }` per stage (consumer provides the CSS color). * Length determines the total segment count. */ stages: ProgressBarStage[]; }; /** Grid-card field pairing a field label with a multi-stage `ProgressBar`. See `ProgressBar` for the bar's own CSS Custom Properties. */ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;