import React from 'react';
import '@brainhubeu/react-carousel/lib/style.css';
export declare type CarouselProps = {
    children: React.ReactElement[];
    isLoading?: boolean;
};
/**
 * Responsive carousel. The component will display a loading spinner if no children are passed via props.
 * Note that the child components must accept a className prop, or its class will be overriden
 */
export declare const Carousel: React.FunctionComponent<CarouselProps>;
export default Carousel;
