export interface Step { label: string; optional?: string; } export interface StepperProps { steps: Step[]; current: number; onChange?: (i: number) => void; /** Linear steppers block forward jumps past the current step. */ linear?: boolean; className?: string; } export declare function Stepper({ steps, current, onChange, linear, className }: StepperProps): import("react/jsx-runtime").JSX.Element;