interface CardProps { title: string; body?: string; image?: string; icon?: string; href?: string; horizontal?: boolean; cta?: string; } export default function Card({ title, body, image, icon, href, horizontal, cta }: CardProps): import("react/jsx-runtime").JSX.Element; export {};