/// export interface ResourcesCardProps { image: { publicURL: string; }; title: JSX.Element | string; updated?: string; description: JSX.Element | string; buttonText?: string | null; link: string; target?: string; backgroundGradient?: boolean; titleOverwrite?: boolean; } export default function ResourcesCard({ image, title, updated, description, buttonText, link, target, backgroundGradient, titleOverwrite, }: ResourcesCardProps): JSX.Element;