import { CardTinyProps, LayoutType, LinkProps, MediaProps, TagProps, TimelineProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface TvBlockProps { layout: LayoutType; tags: TagProps[]; lastEpisodes: CardTinyProps[]; timelineEvents: TimelineProps['events']; mediaSrc?: MediaProps['src']; seeAllEpisodesLink?: LinkProps; currentLive?: { title: string; time: string; }; } export declare const TvBlock: React.FC;