import React from 'react';
export interface GalleryImage {
  src: string;
  alt?: string;
  caption?: string;
}
export interface GalleryProps {
  title?: string;
  intro?: string;
  images: GalleryImage[];
}
declare const PhotoGallery: React.FC<GalleryProps>;
export default PhotoGallery;
