import React from 'react'; interface IStep { id: number; label: string; } interface StepperProps { steps: IStep[]; children?: React.ReactNode; sx?: any; icons?: any; isIconStepper?: boolean; setActiveStep?: (step: number) => void; activeStep?: number; handleNext?: () => void; handleBack?: () => void; } declare const Stepper: ({ steps, children, sx, icons, isIconStepper, setActiveStep, activeStep, handleNext, handleBack, ...other }: StepperProps) => JSX.Element; export default Stepper;