import * as React from 'react';

/**
 * Summary — from @kuppwest/apple-clean@0.1.0.
 */
export interface SummaryProps {
  /** One or two plain sentences describing the product for machines and screen readers. */
  children: React.ReactNode;
}

export declare const Summary: React.ComponentType<SummaryProps>;
