import * as React from 'react';

/**
 * Feature — from @kuppwest/apple-clean@0.1.0.
 */
export interface FeatureProps {
  /** Bold 18px title, a spec noun phrase such as "Check-Control". */
  title: string;
  /** One muted sentence saying why it matters. */
  children: React.ReactNode;
}

export declare const Feature: React.ComponentType<FeatureProps>;
