import React, { ReactNode } from "react"; import { Theme } from "@mui/material/styles"; import { SxProps } from "@mui/system/styleFunctionSx"; export interface SwipeableMobileStepperProps { swipeableViewsProps?: { overflowXHidden?: boolean; sx?: SxProps; }; children: ReactNode[] | JSX.Element[]; } declare const SwipeableMobileStepper: React.FC; export default SwipeableMobileStepper;