import { BoxProps, ButtonProps, CardWithSummaryProps, LayoutType } from '@20minutes/hela'; import { default as React } from 'react'; export interface LastArticlesBlockProps extends BoxProps { articles: CardWithSummaryProps[]; layout: LayoutType; seeMoreButton?: ButtonProps; variablesForQuery?: { brandId: string; first: number; endCursor: string | null; hasNextPage: boolean; sourceExcluded: string[]; }; } export declare const LastArticlesBlock: React.FC;