import * as React from 'react';

/**
 * The small "what's in the set" / service tiles ("Montage-Service", "Einbauanleitung",
 * "Garantie", "komplette Anhangerkupplung"). Sits on the light-gray section background,
 * not white -- distinguishes supporting content from primary content cards.
 */
export interface IconFeatureCardProps {
  /** Lucide icon name. */
  icon: string;
  label: string;
  description?: string;
  size?: 'md' | 'lg';
}
export function IconFeatureCard(props: IconFeatureCardProps): JSX.Element;
