import type { ImageVaultAsset } from "@/types/components/imageVault" export interface ContentCardProps { link?: { href: string openInNewTab?: boolean isExternal?: boolean } heading: string image: ImageVaultAsset bodyText: string promoText?: string className?: string } export interface ContentCardLinkProps { href: string openInNewTab?: boolean isExternal?: boolean children: React.ReactNode }