import { HTMLAttributes, PropsWithChildren, default as React } from 'react'; import { SliderState } from '../../hooks'; export interface CarouselItemProps extends HTMLAttributes { index: number; totalItems: number; state: SliderState; infiniteMode: boolean; isScrollCarousel: boolean; marginRightValue: string; } declare function CarouselItem({ id, index, state, children, totalItems, infiniteMode, isScrollCarousel, marginRightValue, }: PropsWithChildren): React.JSX.Element; export default CarouselItem; //# sourceMappingURL=CarouselItem.d.ts.map