/** * This is a container for carousel component that * fetch data from engagement module and render carousel */ import React from 'react'; import type { CMSBannerProps } from './CMSBanner'; import type { CMSProviderProps } from './CMSProvider'; export interface CMSBannerCarouselProps extends CMSBannerProps, CMSProviderProps { carouselProps?: any; } declare const WrappedCMSBannerCarousel: React.ComponentClass; export { WrappedCMSBannerCarousel as CMSBannerCarousel };