import { CardExtraLargeProps, CardLargeProps, LayoutType, SectionTitleProps } from '@20minutes/hela'; import { default as React } from 'react'; import { ShowCoverProps } from '../../../molecules/ShowCover'; import { TvExtractsAndReplaysBlockProps } from '../TvExtractsAndReplaysBlock'; export interface ShowMainBlockProps { showCover: Omit; replaysAndExtracts: TvExtractsAndReplaysBlockProps; layout: LayoutType; lastReplay?: Omit | Omit; lastReplayTitle?: SectionTitleProps['label']; } export declare const ShowMainBlock: React.FC;