import React from 'react'; import '@splidejs/react-splide/css'; import { ResponsiveImageProps } from '../../responsive-image/responsive-image'; export type VideoCarouselType = React.FC & { SplideSlide: React.FC; }; export type VideoCarouselProps = { children: React.ReactNode; autoPlay?: boolean; interval?: number; pauseOnHover?: boolean; pauseOnFocus?: boolean; infiniteLoop?: boolean; gap?: number; perPage?: number; slidesPerGroup?: number; sponsor?: { text?: string; image?: ResponsiveImageProps; styles?: {}; }; showCarouselArrow?: boolean; showPagination?: boolean; paginationColor?: { active: string; inactive: string; }; isPaginationOutsideBanner?: boolean; isArrowOutsideBanner?: boolean; }; declare const VideoCarousel: VideoCarouselType; export default VideoCarousel;