/// <reference types="react" />
import "./styles.scss";
import type { IStepperProps } from "./types";
/**
 * To display each steps after analysing the orientation
 * @param { IStepperProps} props
 * @returns {React.FC}
 */
declare const Stepper: (props: IStepperProps) => JSX.Element;
export default Stepper;
