import * as React from "react"; import type { StepperProps as MuiStepperProps } from "@mui/material"; declare type StepIconVariant = "active" | "pending" | "success" | "failed"; export interface StepIconProps { index: number; variant: StepIconVariant; nonLinear?: boolean; } export interface StepProps { label: string; error?: boolean; isComplete?: boolean; } declare const Step: React.FC; export interface StepperProps extends Pick { activeStep: number; children?: React.ReactElement[] | React.ReactElement; handleStepClick?: (index: number) => void; } declare const Stepper: ({ activeStep, orientation, children, nonLinear, handleStepClick, }: StepperProps) => JSX.Element; export { Stepper, Step }; //# sourceMappingURL=stepper.d.ts.map