/// <reference types="react" />
export interface StepperHorizontalProps {
    /**
     * Two or more steps.
     */
    steps: string[];
    /**
     * Set the active step (zero based index).
     * Set to -1 to disable all the steps.
     * @default 0
     */
    activeStep: number;
}
declare const StepperHorizontal: React.FC<StepperHorizontalProps>;
export default StepperHorizontal;
