import * as React from 'react';

/**
 * GalleryItem — from @kuppwest/apple-clean@0.1.0.
 */
export interface GalleryItemProps {
  src: string;
  alt: string;
  /** Small muted caption under the square image. */
  caption?: string;
}

export declare const GalleryItem: React.ComponentType<GalleryItemProps>;
