import React from 'react'; interface StepIndicatorsProps { currentStep: number; stepLabels: string[]; } declare const StepIndicators: React.FC; export default StepIndicators;