import * as React from 'react';

/**
 * StatsRow — from @kuppwest/apple-clean@0.1.0.
 */
export interface StatsRowProps {
  /** Exactly four `Stat`s look best (4 columns, 2x2 below 740px). */
  children: React.ReactNode;
  /** Accessible label of the strip. */
  ariaLabel?: string;
}

export declare const StatsRow: React.ComponentType<StatsRowProps>;
