import { BoxProps, CardExtraSmallProps, CardMediumProps, HeaderTitleProps, LayoutType, LinkProps, TagProps, ThemeColorType } from '@20minutes/hela'; import { default as React } from 'react'; export interface ArticlesInRowProps extends BoxProps { headingProps: HeaderTitleProps; articles: (CardExtraSmallProps | CardMediumProps)[]; layout: LayoutType; variant?: 'light' | 'dark'; tags?: TagProps[]; rubric?: ThemeColorType; seeMoreLink?: LinkProps; } export declare const ArticlesInRow: React.FC;