import React from 'react'; import { CardProps } from './card'; export interface InfoCardProps { items: CardProps[]; cy?: string; } declare const InfoCards: React.FC; export default InfoCards;