import React from 'react'; import 'react-responsive-carousel/lib/styles/carousel.min.css'; export interface ImageCarouselItemProps { imageSrc: string; title?: string; link?: string; description?: string; } export interface ImageCarouselProps { className?: string; children?: React.ReactNode; styles?: { root: {}; }; noOfSlidesInView?: number; noOfThumbsInView?: number; showThumbnails?: boolean; showArrows?: boolean; showTitle?: boolean; showStatus?: boolean; showIndicators?: boolean; carouselProps: { styles?: { root: {}; }; items: ImageCarouselItemProps[]; }; carouselTextProps?: { styles?: { root: {}; }; text: string; }; carouselThumbnailsProps?: { styles?: { root: {}; }; }; onChange?: (idx: number) => void; } declare const ImageCarousel: React.FC; export default ImageCarousel;