import { BoxProps, LayoutType, ThemeColorType } from '@20minutes/hela'; import { default as React } from 'react'; interface StaticCard { url: string; name: string; label: string; summary: string; coverUrl: string; labelColor?: ThemeColorType; } export interface StaticCardListProps extends BoxProps { cards: StaticCard[]; layout: LayoutType; } export declare const StaticCardList: React.FC; export {};