import React from 'react'; interface CarouselProps extends React.ComponentProps<'div'> { autoPlay?: boolean; control?: boolean; infinite?: boolean; indicator?: boolean; children?: React.ReactNode[]; } declare const Carousel: { (props: CarouselProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { Carousel }; //# sourceMappingURL=Carousel.d.ts.map