/// import { ThemeTypes } from "../theme/types"; import { CarouselTypes } from './types'; declare const Carousel: ({ delay, indicatorPosition, activeColor, indicatorType, leftIcon, rightIcon, auto, color, theme, children, }: CarouselTypes & { theme: ThemeTypes; }) => JSX.Element; export default Carousel;