import * as React from 'react'; import { OverrideProps } from '@mui/types'; import { CreateSlotsAndSlotProps, SlotCommonProps, SlotProps } from '../types/slot'; export type StepperSlot = 'root'; export interface StepperSlots { /** * The component that renders the root. * @default 'ol' */ root?: React.ElementType; } export type StepperSlotsAndSlotProps = CreateSlotsAndSlotProps; }>; export interface StepperTypeMap

{ props: P & { /** * The component orientation. * @default 'horizontal' */ orientation?: 'horizontal' | 'vertical'; } & StepperSlotsAndSlotProps; defaultComponent: D; } export type StepperProps = OverrideProps, D>; export interface StepperOwnerState extends StepperProps { }