import { ReactElement } from 'react';
interface Props {
    steps: string[];
    activeStep: number;
    alternativeLabel?: boolean;
}
export declare function StepperCustom({ steps, activeStep, alternativeLabel, }: Props): ReactElement;
export {};
