import React from 'react'; export interface CarouselProps { className?: string; defaultSlide?: number; nextElement?: JSX.Element; previousElement?: JSX.Element; hideIndicators?: boolean; onChange?: (slideNumber: number) => void; children: Array> | React.ReactElement; indicatorsClassName?: string; activeIndicatorClassName?: string; slideClassName?: string; hideSlideChangeButtons?: boolean; /** When true, the slide will change automatically */ autoPlay?: boolean; /** Interval in milliseconds to automatically go to the next item when autoPlay is true, defaults to 2000 */ autoPlayInterval?: number; } export declare const Carousel: React.FC;