import type { TypographyProps } from '@mui/material';
import type { SxProps } from '@mui/system';
export interface StepperProps {
    step: number;
    title: string;
    disabled?: boolean;
    sx?: SxProps;
}
export interface StepperTypographyProps extends TypographyProps {
    disabled?: boolean;
}
