import { type StepperProps as MuiStepperProps } from '@mui/material'; import { type ReactElement } from 'react'; import { type WithoutEmotionSpecific } from '../types'; import { type ConnectorTypes } from './enums'; import type { StepConnectorProps } from './StepConnector'; type StepperPropsWithoutEmotionSpecific = WithoutEmotionSpecific; type ConnectorProp = `${ConnectorTypes}` | ReactElement | null; export type StepperProps = Omit & { connector?: ConnectorProp; }; export declare const Stepper: (props: StepperProps) => JSX.Element; export {};