import { BoxProps, CardExtraLargeProps, CardExtraSmallProps, CardLargeProps, CardMediumProps, LayoutType } from '@20minutes/hela'; import { default as React } from 'react'; export interface HomeTopBlockProps extends BoxProps { articles: (CardLargeProps | CardMediumProps)[] | (CardExtraLargeProps | CardMediumProps | CardExtraSmallProps)[]; layout: LayoutType; } export declare const HomeTopBlock: React.FC;