import React from 'react'; import { SxProps } from '@mui/material'; import type { Theme } from 'src/theme/muiTheme'; import { SanityBlockOr } from '../block-content'; declare const GreenTopIconCard: React.FC<{ title: string; description: SanityBlockOr; linkUrl: string; linkText: string; imgSrc: string; sx?: SxProps; }>; export default GreenTopIconCard;