import * as React from 'react';

/**
 * VehicleBar — from @kuppwest/apple-clean@0.1.0.
 */
export interface VehicleBarProps {
  /** Bold vehicle designation, e.g. "VW Touran Typ: 5T1". */
  model: string;
  /** Anchor the model links to, usually the vehicle table section, e.g. "#kwac-fahrzeuge". */
  modelHref?: string;
  /** Muted one-line facts, separated by " · " ; hidden below 740px. */
  facts?: string;
  /** Label of the compact blue pill on the right. */
  ctaLabel?: string;
  /** Target of the compact pill. */
  ctaHref?: string;
}

export declare const VehicleBar: React.ComponentType<VehicleBarProps>;
