/// <reference types="react" />
import "./styles.scss";
import type { IStepInfoProps } from "./types";
/**
 * To handle step display (inline or not)
 * Can handle description display and label
 * @param {IStepInfoProps} props
 * @returns {React.FC}
 */
declare const StepInfo: (props: IStepInfoProps) => JSX.Element;
export default StepInfo;
