import type { FC } from 'react'; import type { CarouselOptions } from '../inboxblocks/ImageCarouselV2'; import type { ImageBlockProps } from '../inboxblocks/ImageWithOverlay'; import { 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; options?: CarouselOptions; index?: number; renderItemWidth: number; item: ImageBlockProps[]; tab?: string; type?: string; spaceBetween: number; onPressItem?: (item: any) => void; renderCustomContent?: (item: any) => JSX.Element | null; isActive?: boolean; } declare const StackedCarouselItem: FC; export default StackedCarouselItem;