import { MostReadArticlesProps as MostReadArticlesUIProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface MostReadArticlesProps extends MostReadArticlesUIProps { variablesForQuery?: { brandId: string; rubric?: { id: string; slug: string; label: string; }; sourceExcluded?: string[]; liveLimit?: number; mostReadLimit?: number; builtAt?: number; }; } export declare const MostReadArticles: React.FC;