import { ButtonProps, GridProps, LinkProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface AIArticlesListProps extends GridProps { articles: { title: string; url: string; }[]; linksSize?: LinkProps['size']; seeMoreButton?: ButtonProps; variablesForQuery?: { brandId?: string; slug?: string; first?: number; endCursor: string | null; hasNextPage: boolean; }; } export declare const AIArticlesList: React.FC;