/** * @TODO Needs more check and fix */ import React, { CSSProperties } from "react"; export interface CarouselProps { className?: string; style?: CSSProperties; items: { src: any; caption?: { title: string; subtitle?: string; }; }[]; defaultIndex?: number; indicator?: 'default' | 'dot' | 'thumb'; indicatorPosition?: 'bottom' | 'end'; anim?: 'slide' | 'fade'; } declare const Carousel: ({ className, style, items, defaultIndex, indicator, indicatorPosition, anim, }: CarouselProps) => React.JSX.Element; export default Carousel;