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