import { FC, ReactType } from 'react'; import { ImageProps } from '../../blocks/Image'; import { LinkProps } from '../../blocks/Link'; export interface PartnerListProps { title?: string; items?: { id: string; title: string; LinkProps: LinkProps; Image: ReactType; ImageProps: ImageProps; }[]; } declare const PartnerList: FC; export default PartnerList;