import { AstroTopicCardProps, HeaderBannerProps, LayoutType, LinkProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface AstroHomepageContentProps { signsContent: { heading: HeaderBannerProps; topics: AstroTopicCardProps[]; link: LinkProps; }[]; layout?: LayoutType; } export declare const AstroHomepageContent: React.FC;