import * as React from 'react';

/**
 * Hero — from @kuppwest/apple-clean@0.1.0.
 */
export interface HeroProps {
  /** Small muted line above the headline, e.g. "Komplettset für den VW Touran 5T1". */
  eyebrow?: string;
  /** The product headline: two short sentences, product first, benefit second. */
  title: React.ReactNode;
  /** Muted lead paragraph (18-23px). */
  lead?: React.ReactNode;
  /** Blue standalone links under the lead; each gets a trailing chevron. */
  links?: HeroLink[];
  /** Product photo on white with optional caption, max 860px wide. */
  image?: HeroImage;
}

export declare const Hero: React.ComponentType<HeroProps>;
