/// <reference types="react" />
import "./styles.scss";
import { IStepContentProps } from "./types";
/**
 * Gives the step content considering the orientation
 * Can customize styles and nodeWidth of each step
 * @param {IStepContentProps} props
 * @returns {React.FC}
 */
declare const StepContent: (props: IStepContentProps) => JSX.Element;
export default StepContent;
