import * as React from 'react';

/**
 * The top-of-page vehicle filter row on the desktop listing ("VW Touran Typ: 5T1",
 * "Komplettsatz", "Baujahr 2015 - jetzt", "ohne Luftfederung") plus the primary CTA.
 */
export interface VehicleFilterBarProps {
  vehicleLabel: string;
  filters?: string[];
  cta?: string;
  onCta?: () => void;
}
export function VehicleFilterBar(props: VehicleFilterBarProps): JSX.Element;
