import type React from "react";
export interface StepperProps {
    /**
     * Set the active step (zero based index).
     * Set to -1 to disable all the steps.
     */
    activeStep?: number;
    /**
     * Two or more `<Step />` components.
     */
    children: React.ReactNode;
}
export declare function Stepper({ activeStep, children }: StepperProps): import("react/jsx-runtime").JSX.Element;
