import React from "react";
export interface IStepsProps {
    /** Number of steps */
    numberOfSteps: number;
    /** If not progressive, the index of the only active step. If progressive, the index of the last active steps */
    activeStep: number;
    /** Does the stepper can have only single active step */
    progressive?: boolean;
    /** Class for wrapper div */
    wrapperClassName?: string;
}
export declare const Steps: React.ForwardRefExoticComponent<IStepsProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=Steps.d.ts.map