import { LayoutType, NewsletterProps } from '@20minutes/hela'; import { default as React } from 'react'; import { LiveInProgressBlockProps } from '../../components/molecules/LiveInProgressBlock'; import { LatestArticlesContainerProps } from '../LatestArticlesContainer'; export interface DirectTabsContainerProps { layout: LayoutType; liveInProgressProps: LiveInProgressBlockProps; lastArticlesProps: LatestArticlesContainerProps; newsletterProps?: NewsletterProps; } export declare const DirectTabsContainer: React.FC;