import { BoxProps, CardMediumProps, LayoutType, LinkProps, SelectProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface LocalNewsProps extends BoxProps { articles: CardMediumProps[]; selectProps: SelectProps; seeMoreLink: LinkProps; layout: LayoutType; variablesForQuery: { brandId: string; }; } export declare const LocalNews: React.FC;