import { ReactNode } from 'react';
interface Props {
    id?: string;
    active: string;
    data: {
        id: string;
        content: ReactNode;
        className?: string;
    }[];
    autoplay?: boolean;
    autoplaySpeed?: number;
    showIndicators?: boolean;
    indicatorsClassName?: string;
    className?: string;
    onChange: (activeId: string) => void;
}
declare const Carousel: React.FC<Props>;
export default Carousel;
