import 'react-responsive-carousel/lib/styles/carousel.min.css'; import React from 'react'; export interface VideoCarouselProps { autoPlay?: boolean; infiniteLoop?: boolean; interval?: number; emulateTouch?: boolean; onClickItem?: () => void; children: any[]; showThumbs?: boolean; renderThumbs?: (children: React.ReactChild[]) => React.ReactChild[]; showArrows?: boolean; showStatus?: boolean; showIndicators?: boolean; renderIndicator?: (clickHandler: (e: React.MouseEvent | React.KeyboardEvent) => void, isSelected: boolean, index: number, label: string) => React.ReactNode; centerMode?: boolean; centerSlidePercentage?: number; onChange?: () => void; styles?: { root?: {}; }; dynamicHeight?: boolean; swipeScrollTolerance?: number; type?: string; isArrowOutsideBanner?: boolean; dotColor?: { active: string; inactive: string; }; } declare const VideoCarousel: React.FC; export default VideoCarousel;