/** * Component for stacking CMS banners. */ import React from 'react'; import type { CMSBannerProps } from './CMSBanner'; import type { CMSProviderProps } from './CMSProvider'; export interface CMSBannerStackedProps extends CMSBannerProps, CMSProviderProps { carouselProps?: unknown; accessible?: boolean; getAccessibilityLabel?: (instance: unknown) => string; } declare const WrappedCMSBannerStacked: React.ComponentClass; export { WrappedCMSBannerStacked as CMSBannerStacked };