/// <reference types="react" />
import "./styles.scss";
import type { IStepProps } from "./types";
/**
 * Represents each step.
 * Consist of node, label and connectors to previous and next step
 * @function
 * @param {IStepProps} props
 * @returns {React.FC}
 */
declare const Step: (props: IStepProps) => JSX.Element;
export default Step;
