import { SxProps } from '@mui/material'; import { DefaultTheme as Theme } from '@mui/styles'; interface StepperProps { className?: string; activeStep: number; background?: string; steps: string[]; onStepClick?: (stepIndex: number) => void; sx?: SxProps; } declare const RegenStepper: ({ className, activeStep, steps, background, onStepClick, sx, }: StepperProps) => JSX.Element; export default RegenStepper;