import { ButtonProps, CardExtraLargeProps, CardSideImageProps, ColorSystemProps, LayoutType, SpacingSystemProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface QuizListProps extends SpacingSystemProps, ColorSystemProps { articles: (CardExtraLargeProps | CardSideImageProps)[]; layout: LayoutType; seeMoreButton?: ButtonProps; totalArticles?: number; currentPagePath?: string; currentPage?: string; variablesForQuery?: { brandId?: string; slug?: string; first?: number; endCursor: string | null; hasNextPage: boolean; }; } export declare const QuizList: React.FC;