/** * [WHO]: Stepper primitives for linear setup, checkout, and workflow progress. * [FROM]: React, class-variance-authority, registry/lib/utils. * [TO]: sparkdesign package consumers; Showcase; CLI registry copies. * [HERE]: registry/basic/stepper.tsx — tokenized horizontal/vertical stepper. * * [PROTOCOL]: * 1. Keep this P3 header in sync when the public contract changes. * 2. Update module AGENTS.md (P2) and root AGENTS.md (P1) when boundaries change. * 3. Follow design tokens and explicit type exports. */ import * as React from 'react'; import { type VariantProps } from 'class-variance-authority'; type StepStatus = 'complete' | 'current' | 'upcoming' | 'error'; declare const stepperVariants: (props?: ({ orientation?: "horizontal" | "vertical" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface StepperProps extends React.OlHTMLAttributes, VariantProps { } export interface StepperItemProps extends React.LiHTMLAttributes { status?: StepStatus; } export type StepperIndicatorProps = React.HTMLAttributes; export type StepperContentProps = React.HTMLAttributes; export type StepperTitleProps = React.HTMLAttributes; export type StepperDescriptionProps = React.HTMLAttributes; export type StepperSeparatorProps = React.HTMLAttributes; declare function Stepper({ className, orientation, ...props }: StepperProps): import("react/jsx-runtime").JSX.Element; declare function StepperItem({ className, status, ...props }: StepperItemProps): import("react/jsx-runtime").JSX.Element; declare function StepperIndicator({ className, children, ...props }: StepperIndicatorProps): import("react/jsx-runtime").JSX.Element; declare function StepperContent({ className, ...props }: StepperContentProps): import("react/jsx-runtime").JSX.Element; declare function StepperTitle({ className, ...props }: StepperTitleProps): import("react/jsx-runtime").JSX.Element; declare function StepperDescription({ className, ...props }: StepperDescriptionProps): import("react/jsx-runtime").JSX.Element; declare function StepperSeparator({ className, ...props }: StepperSeparatorProps): import("react/jsx-runtime").JSX.Element; export { Stepper, StepperItem, StepperIndicator, StepperContent, StepperTitle, StepperDescription, StepperSeparator, }; export type { StepStatus };