import type { SxProps } from '@mui/material'; import { FC } from 'react'; export declare enum StepState { PENDING = 0, ACTIVE = 1, COMPLETED = 2, CANCELED = 3 } export interface Step { label: string; state: StepState; icon?: JSX.Element; backgroundColor?: string; } export interface ProgressStepsProps { steps: Step[]; sx?: SxProps; } declare const ProgressSteps: FC; export default ProgressSteps;