import React from 'react'; export interface Props { className?: string; /** * StepDescription or StepContent */ children?: React.ReactNode; /** * Whether this should be interactive or just static. */ interactive?: boolean; /** * Index of the step */ index?: number; opened?: boolean; /** * Handler func triggered when user clicks the icon. Use when you want to handle the state on your own. */ onSelect?: (index: number) => void; } export declare const Step: React.FC;