export interface StepIconProps {
    /**
     * The Step variant.
     */
    variant?: 'inactive' | 'active' | 'completed' | 'error';
    /**
     * The label displayed in the step icon.
     */
    iconLabel?: number;
}
