import { BoxProps, CardSmallProps, CarouselProps, LayoutType, LinkProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface EntertainmentCarouselProps extends BoxProps { layout: LayoutType; label: string; seeMoreLink: LinkProps; items?: CardSmallProps[]; carouselProps?: Pick; } export declare const EntertainmentCarousel: React.FC;