import type { CarouselItemContextValue } from './types'; /** * Used internally within CarouselItem component to provide access to id and dismiss. * @example * ``` * const MyCarouselItem = () => { * const { id, dismiss } = useCarouselItem() * return {`Carousel item ${id}`} * } * * const MyCarousel = () => { * return ( * * * * * * ) * } * ``` */ export declare const CarouselItemContext: import('react').Context< CarouselItemContextValue | undefined >; //# sourceMappingURL=CarouselItemContext.d.ts.map