/// <reference types="react" />
import { StepLabelProps as MuiStepLabelProps } from "@mui/material/StepLabel";
export interface StepLabelProps extends MuiStepLabelProps {
    loading?: boolean;
}
declare const StepLabel: React.FC<StepLabelProps>;
export default StepLabel;
