import * as React from 'react';

/**
 * VehicleTable — from @kuppwest/apple-clean@0.1.0.
 */
export interface VehicleTableProps {
  /** Column headings, e.g. ["HSN / TSN", "Marke & Fahrzeugtyp", "Baujahr", "PS / KW"]. */
  columns: string[];
  /** One string per column per row, in column order. Use "—" for unknown values, never invent them. */
  rows: string[][];
  /** Accessible table name. */
  ariaLabel?: string;
}

export declare const VehicleTable: React.ComponentType<VehicleTableProps>;
