import { BoxProps, CardExtraSmallProps, CardLargeProps, DividerProps, HeaderTitleProps, LayoutType, LinkProps, TagProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface ArticlesWithMainProps extends BoxProps { headingProps: HeaderTitleProps; layout: LayoutType; articles: (CardExtraSmallProps | CardLargeProps)[]; dividerProps?: DividerProps; fitContainer?: boolean; isScrollable?: boolean; seeMoreLink?: LinkProps; tags?: TagProps[]; variant?: 'light' | 'dark'; hasBackgroundImage?: boolean; } export declare const ArticlesWithMain: React.FC;