import React from 'react';
interface GalleryItem {
title: string;
src: string;
}
interface GalleryProps {
items: GalleryItem[];
declare const Gallery: React.FC<GalleryProps>;
export default Gallery;