interface ImageGalleryModalProps { images: string[]; isOpen: boolean; onClose: () => void; initialIndex?: number; } /** * Full-screen image gallery modal * Reusable component extracted from TMCG event detail page * Features: Keyboard navigation, prev/next buttons, image counter */ export declare function ImageGalleryModal({ images, isOpen, onClose, initialIndex, }: ImageGalleryModalProps): import("react").JSX.Element | null; export {}; //# sourceMappingURL=image-gallery-modal.d.ts.map