import { loyaltyCardVariants } from "./variants" import type { VariantProps } from "class-variance-authority" import { ImageVaultAsset } from "@/types/components/imageVault" export interface LoyaltyCardProps extends React.HTMLAttributes, VariantProps { link?: { href: string title: string openInNewTab?: boolean isExternal: boolean } image?: ImageVaultAsset heading?: string | null bodyText?: string | null backgroundImage?: { url: string } }