export interface GalleryItemProps { src: string; alt?: string; caption?: string; className?: string; onClick?: () => void; } export declare function GalleryItem({ src, alt, caption, className, onClick, }: GalleryItemProps): import("react/jsx-runtime").JSX.Element;