import * as React from 'react';

/**
 * MoreOfferCard — from @kuppwest/apple-clean@0.1.0.
 */
export interface MoreOfferCardProps {
  /** Listing URL, opened in a new tab. */
  href: string;
  /** Product image shown square and contained on the dark tile. */
  src: string;
  /** Accessible name of the whole tile, e.g. "Weiteres Angebot 1 anzeigen". */
  ariaLabel: string;
  /** Blue action line under the tile; defaults to "Angebot anzeigen". */
  label?: string;
}

export declare const MoreOfferCard: React.ComponentType<MoreOfferCardProps>;
