import { BoxProps, ButtonProps, CardMostProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface MostReadArticlesBlockProps extends BoxProps { items: CardMostProps[]; seeMoreButton?: ButtonProps; variablesForQuery?: { brandId: string; first: number; excludeModel: string[]; endCursor: string | null; hasNextPage: boolean; }; } export declare const MostReadArticlesBlock: React.FC;