import * as React from 'react'; import { SxProps } from '@mui/system'; import { Theme } from "../styles/index.js"; import { InternalStandardProps as StandardProps } from "../internal/index.js"; import { StepConnectorClasses } from "./stepConnectorClasses.js"; export type StepConnectorIcon = React.ReactElement | string | number; export interface StepConnectorProps extends StandardProps, 'children'> { /** * Override or extend the styles applied to the component. */ classes?: Partial; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; } export type StepConnectorClasskey = keyof NonNullable; /** * * Demos: * * - [Stepper](https://mui.com/material-ui/react-stepper/) * * API: * * - [StepConnector API](https://mui.com/material-ui/api/step-connector/) */ export default function StepConnector(props: StepConnectorProps): React.JSX.Element;