import type { FunctionComponent } from 'react'; import type { ForwardProps } from '../../types'; import type { MultiStepFormProps } from './MultiStepForm.types'; interface FormProgressProps { steps: MultiStepFormProps['steps']; currentStepId: MultiStepFormProps['currentStepId']; showStepNames?: boolean; } declare const HorizontalFormProgress: FunctionComponent; export default HorizontalFormProgress; //# sourceMappingURL=HorizontalFormProgress.d.ts.map