import { LayoutType, MarginSystemProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface RewindListProps extends MarginSystemProps { rewinds: { cover: string; link: string; year: string; }[]; layout: LayoutType; } export declare const RewindList: React.FC;