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<Theme>;
    };
    children: ReactNode[] | JSX.Element[];
}
declare const SwipeableMobileStepper: React.FC<SwipeableMobileStepperProps>;
export default SwipeableMobileStepper;
