import * as React from 'react';

/**
 * @startingPoint section="Data" subtitle="Label/value technical spec table" viewport="700x300"
 * "Technische Spezifikationen" table -- a caps micro-label left, bold value right, alternating
 * row shading, optional icon+label section heading. Desktop uses two of these side by side
 * (AHK / E-Satz); mobile uses one combined table.
 */
export interface SpecTableRow { label: string; value: string; }
export interface SpecTableProps {
  icon?: string;
  title?: string;
  rows: SpecTableRow[];
}
export function SpecTable(props: SpecTableProps): JSX.Element;
