/// <reference types="react" />
import Step from "./step";
import { StepsProps } from "./steps";
interface StepsInterface {
    (props: StepsProps): JSX.Element;
    Step: typeof Step;
}
declare const Steps: StepsInterface;
export default Steps;
