import { GridProps } from '@20minutes/hela'; import { default as React } from 'react'; export interface ImagesGridProps extends GridProps { images?: { cover: string; title: string; link: string; }[]; } export declare const ImagesGrid: React.FC;