import { FC, PropsWithChildren } from 'react';
export interface StepProps extends PropsWithChildren {
    /**
     * Optional Text of the marker
     */
    label?: string;
    /**
     * CSS Classname to applied to the Step
     */
    className?: string;
}
export declare const Step: FC<StepProps>;
