import * as React from 'react';

/**
 * LoadComparison — from @kuppwest/apple-clean@0.1.0.
 */
export interface LoadComparisonProps {
  /** Tiny uppercase eyebrow, e.g. "Leistung". */
  eyebrow?: string;
  /** Left-aligned statement headline. */
  statement: React.ReactNode;
  /** Muted copy under the statement. */
  copy?: React.ReactNode;
  /** Two rows in the template: towing load (accent) and nose weight. */
  bars: LoadBar[];
  /** Small footnote under the bars, e.g. "Balken maßstäblich zur Anhängelast." */
  note?: string;
}

export declare const LoadComparison: React.ComponentType<LoadComparisonProps>;
