import { BoxProps, LayoutType, TagProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface MunicipalBlockProps extends BoxProps { layout: LayoutType; tags: TagProps[]; regions: { name: string; url: string; }[]; articles: { title: string; url: string; }[]; } export declare const MunicipalBlock: React.FC;