import React from "react"; import { NavigationDirection } from "./Carousel"; export declare type CarouselItemProps = JSX.IntrinsicElements["li"] & { /** Navigation direction, whether the next slide is next in line or previous. (Managed by Carousel) */ nav?: NavigationDirection; /** The duration it takes (in milliseconds) the carousel to transition to the next. (Managed by Carousel) */ transitionDuration?: number; /** An event handler triggered after a transition ended. (Managed by Carousel) */ afterTransition?: (e: AfterSlideEvent) => void; /** Translate distance when swipe. (Managed by Carousel) */ translateX?: number; }; export declare type TransitionDirection = "right" | "left"; export declare type AfterSlideEvent = React.AnimationEvent | React.TransitionEvent; export declare const CarouselItem: React.FC;