import { cardVariants } from "./variants" import type { VariantProps } from "class-variance-authority" export interface CardProps extends React.HTMLAttributes, VariantProps { primaryButton?: { href: string title: string openInNewTab?: boolean isExternal: boolean } secondaryButton?: { href: string title: string openInNewTab?: boolean isExternal: boolean } scriptedTopTitle?: string | null heading?: string | null bodyText?: string | null backgroundImage?: { url: string } }