import React, { FC } from "react"; export interface FeatureCardProps { accent: string; bg: string; description: string; highlights: string[]; href: string; Icon: React.ComponentType<{ className?: string; }>; title: string; } export declare const FeatureCard: FC;