import { WizardProps } from './interfaces'; interface WizardStepNavigationExpandableProps { activeStepIndex: number; farthestStepIndex: number; allowSkipTo: boolean; i18nStrings: WizardProps.I18nStrings; isLoadingNextStep: boolean; onStepClick: (stepIndex: number) => void; onSkipToClick: (stepIndex: number) => void; steps: ReadonlyArray; expanded: boolean; onExpandChange: (expanded: boolean) => void; } export default function WizardStepNavigationExpandable({ activeStepIndex, farthestStepIndex, allowSkipTo, i18nStrings, isLoadingNextStep, onStepClick, onSkipToClick, steps, expanded, onExpandChange }: WizardStepNavigationExpandableProps): JSX.Element; export {};