import { FC } from 'react'; type StepPaneProps = { onChange: (stepKey: string) => void; children: any; activeStepKey: string; activeStepPosition: number; forceOrder: boolean; verticalSteps?: boolean; }; declare const StepPane: FC; export default StepPane;