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