import * as React from 'react';

/**
 * Gallery — from @kuppwest/apple-clean@0.1.0.
 */
export interface GalleryProps {
  /** Three `GalleryItem`s (3 columns; below 900px 2 + 1 full width). */
  children: React.ReactNode;
}

export declare const Gallery: React.ComponentType<GalleryProps>;
