import React from 'react'; import { BoxProps } from '@mui/material'; import { SwiperProps } from 'swiper/react'; export interface CarouselProps extends Omit, Omit | 'component'> { /** * Callback that receives Swiper instance */ onInit?: SwiperProps['onSwiper']; /** * Travelled distance in px for peek effect * @default 100 */ peekDistance?: number; /** * Speed of peek effect * @default 150 (half of default Carousel's speed) */ peekSpeed?: number; } /** * Modern mobile friendly carousel for slideshows, built with Swiper */ export declare const Carousel: React.FC;