import React from "react";
interface StepLabelProps {
    isCurrentStep?: boolean;
    opacity: number;
    label?: string | React.ReactNode;
    description?: string | React.ReactNode;
    optional?: boolean;
    optionalLabel?: string | React.ReactNode;
}
export declare const StepLabel: ({ isCurrentStep, opacity, label, description, optional, optionalLabel, }: StepLabelProps) => JSX.Element | null;
export {};
