/** Steps — a progress trail: what is done, what is happening, what is left * (W2 §The Kit). Everything before `active` reads as done. */ import type { ReactNode } from "react"; import { type KitStyled } from "../tokens.js"; export interface StepItem { label: string; description?: string; } export interface StepsProps extends KitStyled { /** The steps, in order. */ items: StepItem[]; /** Index of the current step. */ active?: number; orientation?: "horizontal" | "vertical"; /** A Kit mark drawn in place of every step's numbered disc. */ marker?: ReactNode; } export declare function Steps({ items, active, orientation, marker, style }: StepsProps): import("react").JSX.Element;