interface WizardStepperProps { isHorizontal: boolean; setCurrentStep: (step: number) => void; stepFields: Array>; } /** * Stepper component for rendering a step-by-step navigation UI. * * @param {Object} props - The properties object. * @param {boolean} props.isHorizontal - Determines the orientation of the stepper (horizontal or vertical). * @param {function} props.setCurrentStep - Function to set the current step index. * @param {Array} props.stepFields - Array of fields associated with each step. * * @returns {JSX.Element} The rendered Stepper component. */ declare function Stepper({ isHorizontal, setCurrentStep, stepFields }: WizardStepperProps): import("react/jsx-runtime").JSX.Element; export { Stepper }; //# sourceMappingURL=Stepper.d.ts.map