import * as React from 'react';

/**
 * IncludedGrid — from @kuppwest/apple-clean@0.1.0.
 */
export interface IncludedGridProps {
  /** Five `IncludedItem`s (5 columns; 2 columns below 900px with the last one full width). */
  children: React.ReactNode;
}

export declare const IncludedGrid: React.ComponentType<IncludedGridProps>;
