import React from "react"; import { children, prevArrow, nextArrow, navigation, autoplay, autoplayDelay, transition, loop, className, slideRef } from "../../types/components/carousel"; export interface CarouselProps extends React.ComponentProps<"div"> { children: children; prevArrow?: prevArrow; nextArrow?: nextArrow; navigation?: navigation; autoplay?: autoplay; autoplayDelay?: autoplayDelay; transition?: transition; loop?: loop; className?: className; slideRef?: slideRef; } export declare const Carousel: React.ForwardRefExoticComponent & React.RefAttributes>; export default Carousel; //# sourceMappingURL=index.d.ts.map