import * as React from 'react';

/**
 * DetailCard — from @kuppwest/apple-clean@0.1.0.
 */
export interface DetailCardProps {
  /** Product image, shown 4:3 contained on a white inset with 14px radius. */
  src: string;
  alt: string;
  /** Tiny uppercase manufacturer line above the title, e.g. "Auto Hak". */
  kicker?: string;
  /** Bold 22px title. */
  title: string;
  /** Muted description. */
  children: React.ReactNode;
}

export declare const DetailCard: React.ComponentType<DetailCardProps>;
