///
import { type StepLabelProps as MuiStepLabelProps } from '@mui/material';
import type { WithoutEmotionSpecific } from '../../types';
export type StepButtonProps = {
/**
* Если true, текущий шаг будет отображен как активный
*/
isSelected?: boolean;
/**
* Функция, вызываемая при клике на элемент
*/
onClick: () => void;
} & WithoutEmotionSpecific;
export declare const StepButton: (props: StepButtonProps) => JSX.Element;