import React from 'react';
import { StepperProps } from './Stepper.types';
/**
 * Steppers convey progress through numbered steps. It provides a wizard-like workflow.
 */
declare const Stepper: React.FC<StepperProps>;
export default Stepper;
