import { IStepItem } from '../checkout-confirmation/type';
export interface IStepperProps {
    /**
     * Number of current step of Stepper
     */
    currentStep: number;
    /**
     * Array of steps
     */
    steps: Array<IStepItem>;
}
