///
import { type StepLabelProps as MuiStepLabelProps } from '@mui/material';
import { type WithoutEmotionSpecific } from '../../types';
export type StepProps = {
/**
* Является ли шаг в состоянии select
*/
isSelected?: boolean;
} & WithoutEmotionSpecific;
export declare const StepLabel: (props: StepProps) => JSX.Element;