import React from 'react'; import { BoxProps } from '@mui/material'; import { SwiperSlideProps } from 'swiper/react'; export interface CarouselSlideProps extends Omit, Omit { children?: BoxProps['children']; } /** * One slide in the carousel */ export declare const CarouselSlide: React.FC;