import * as React from 'react';

/**
 * SpecColumn — from @kuppwest/apple-clean@0.1.0.
 */
export interface SpecColumnProps {
  /** Panel heading, underlined with a 1px ink rule. */
  title: string;
  /** Label/value pairs; values are right-aligned and semibold. */
  rows: SpecRow[];
}

export declare const SpecColumn: React.ComponentType<SpecColumnProps>;
