export type ProgressIndicatorStatus = "complete" | "current" | "upcoming" | "invalid" | "disabled"; export interface ProgressIndicatorItem { value: string; label: string; description?: string; status?: ProgressIndicatorStatus; } import type { HTMLAttributes } from "svelte/elements"; type ProgressIndicatorProps = Omit, "class"> & { items: ProgressIndicatorItem[]; vertical?: boolean; label?: string; statusLabels?: Partial>; class?: string; }; declare const ProgressIndicator: import("svelte").Component; type ProgressIndicator = ReturnType; export default ProgressIndicator; //# sourceMappingURL=ProgressIndicator.svelte.d.ts.map