/** * This is a container for carousel component that * fetch data from engagement module and render carousel */ import type { FunctionComponent } from 'react'; import type { CoreContentManagementSystemProvider } from '../../../libs/fsengage'; import type { CarouselProps } from './Carousel'; export interface ShelfProps { provider: CoreContentManagementSystemProvider; group: string; identifier: string; carouselHeight?: number; topCarouselProps?: CarouselProps; bottomCarouselProps?: CarouselProps; } export declare const Shelf: FunctionComponent;