/// import { ResourcesCardProps } from '../cards/ResourcesCard'; export interface ResourceCardsProps { items: ResourcesCardProps[]; imageClassName?: string; className?: string; target?: string; } export default function ResourceCards({ items, className, target, }: ResourceCardsProps): JSX.Element;