import * as React from 'react';

/**
 * Stat — from @kuppwest/apple-clean@0.1.0.
 */
export interface StatProps {
  /** The number, formatted the German way ("1.800", "9,9"). Rendered thin (weight 200) and large. */
  value: string;
  /** Unit and noun under the number, e.g. "kg Anhängelast". */
  unit: string;
}

export declare const Stat: React.ComponentType<StatProps>;
