export type ProgressIndicatorStatus = "complete" | "current" | "upcoming" | "disabled" | "invalid" | "incomplete"; export interface ProgressIndicatorItem { id?: string; /** Svelte-canonical alias for the React/Vue `id`. */ value?: string; label: unknown; description?: unknown; status?: ProgressIndicatorStatus; } export type ProgressIndicatorOrientation = "horizontal" | "vertical"; export type ProgressIndicatorProps = { items: ProgressIndicatorItem[]; orientation?: ProgressIndicatorOrientation; /** Svelte-canonical alias: `vertical` sets `orientation="vertical"`. */ vertical?: boolean; label?: string; class?: string; }; export declare const ProgressIndicator: import("vue").DefineComponent ProgressIndicatorItem[]; required: true; }; orientation: { type: () => ProgressIndicatorOrientation; default: string; }; vertical: { type: BooleanConstructor; default: boolean; }; label: { type: StringConstructor; default: string; }; class: { type: StringConstructor; default: undefined; }; }>, () => import("vue").VNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly ProgressIndicatorItem[]; required: true; }; orientation: { type: () => ProgressIndicatorOrientation; default: string; }; vertical: { type: BooleanConstructor; default: boolean; }; label: { type: StringConstructor; default: string; }; class: { type: StringConstructor; default: undefined; }; }>> & Readonly<{}>, { class: string; label: string; orientation: ProgressIndicatorOrientation; vertical: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; //# sourceMappingURL=ProgressIndicator.d.ts.map