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