import { FC, ReactType } from 'react'; import { ImageProps } from '../../blocks/Image'; export interface FeaturedPartnersProps { title?: string; items?: { name: string; Image: ReactType; ImageProps: ImageProps; }[]; } declare const FeaturedPartners: FC; export default FeaturedPartners;