import { ImageProps } from './Image'; interface LightBoxProps { images: ImageProps[]; lightboxClassName?: string; closeLightbox: () => void; showThumbnails?: boolean; thumbnailsClassName?: string; currentIndex: number; goToNext: () => void; goToPrevious: () => void; goToIndex: (index: number) => void; } declare const LightBox: import('react').MemoExoticComponent<({ images, lightboxClassName, closeLightbox, showThumbnails, thumbnailsClassName, currentIndex, goToNext, goToPrevious, goToIndex }: LightBoxProps) => import("react/jsx-runtime").JSX.Element | null>; export default LightBox;