import { BoxProps, CardSmallProps, LayoutType } from '@20minutes/hela'; import { default as React } from 'react'; import { CardsListProps } from '../../CardsList'; interface TvTabProps { items: CardSmallProps[]; title?: string; seeMore?: CardsListProps['seeMoreButton']; variablesForQuery?: CardsListProps['variablesForQuery']; } export interface TvExtractsAndReplaysBlockProps extends BoxProps { layout: LayoutType; extracts: TvTabProps; replays: TvTabProps; variant?: 'video' | 'show'; contentIsCarousel?: boolean; } export declare const TvExtractsAndReplaysBlock: React.FC; export {};