type Step = { component: any; props: any; }; export type Steps = Array; type Props = { steps: Steps; activeIndex: number; setActiveIndex: (index: number) => void; onClose: () => void; onStepChange: (current: number, next: number) => void; }; export default function ShowcaseCarousel(props: Props): JSX.Element; export {};