export function CarouselImage({ src, alt }: { src: any; alt?: string; }): any; export function CarouselSlide({ children }: { children: any; }): any; export function Carousel({ children, items, autoPlay, interval, showDots, showArrows, }: { children: any; items: any; autoPlay?: boolean; interval?: number; showDots?: boolean; showArrows?: boolean; }): any;