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