import type { FC } from 'react'; import type { CarouselOptions } from '../inboxblocks/ImageCarouselV2'; import type { ImageBlockProps, VideoModalSource } from '../inboxblocks/ImageWithOverlay'; import type { TextBlockProps } from '../inboxblocks/TextBlock'; import type { AncillaryDataProps } from '../types'; interface CarouselItemProps extends AncillaryDataProps { /** * This is the height for the carousel card in the slide, not the slide itself. */ height?: number; hasTextBelow?: boolean; modal?: boolean; options?: CarouselOptions; index?: number; renderItemWidth: number; item: ImageBlockProps | TextBlockProps; tab?: string; type?: string; spaceBetween: number; isActive?: boolean; openModal?: (video: VideoModalSource) => void; fixedRatio?: boolean; } declare const CarouselItem: FC; export default CarouselItem;