import { FC } from 'react'; interface StepperProps { /** overwrite className */ className?: string; /** Use dark colors palette*/ darkMode?: boolean; /** the steps you will have */ items: string[]; /** index of the active item */ itemActive: number; } declare const Stepper: FC; export default Stepper;