interface Step { _id: string; label: string; } export type StepperProps = { steps?: Step[]; orientation?: string; activeIndex?: number; onChange?: Function; height?: number; spacing?: number; absolute?: boolean; stepWarning?: number; }; declare var Stepper: React.ComponentType; export default Stepper