import * as React from 'react';

/**
 * DarkHero — from @kuppwest/apple-clean@0.1.0.
 */
export interface DarkHeroProps {
  /** Gray eyebrow above the headline. */
  eyebrow?: string;
  /** Oversized white headline (up to 84px). Use `<br />` for the line break between the two sentences. */
  title: React.ReactNode;
  /** Muted lead paragraph. */
  lead?: React.ReactNode;
  /** Light-blue standalone links under the lead. */
  links?: DarkHeroLink[];
  /** Product tiles on light gray below the copy (two in the template). */
  tiles?: DarkHeroTile[];
  /** "Passend für" row with the vehicle image, separated by a dark hairline. */
  fit?: DarkHeroFit;
}

export declare const DarkHero: React.ComponentType<DarkHeroProps>;
