import { default as React } from 'react'; export type GridProps = { headline: string; topRow: { image: string; title: string; description: string; }; middleRow: { image: string; title: string; description: string; }; bottomRow: { image: string; title: string; description: string; }; backgroundGradient: 'blue' | 'yellow' | 'grey'; }; export declare const Grid: ({ headline, topRow, middleRow, bottomRow, backgroundGradient }: GridProps) => React.JSX.Element;