import * as React from 'react'; import { OverrideProps } from '@mui/types'; import { CreateSlotsAndSlotProps, SlotCommonProps, SlotProps } from '../types/slot'; export type StepButtonSlot = 'root'; export interface StepButtonSlots { /** * The component that renders the root. * @default 'button' */ root?: React.ElementType; } export type StepButtonSlotsAndSlotProps = CreateSlotsAndSlotProps; }>; export interface StepButtonTypeMap

{ props: P & StepButtonSlotsAndSlotProps; defaultComponent: D; } export type StepButtonProps = OverrideProps, D>; export interface StepButtonOwnerState extends StepButtonProps { }