import type { LightboxImage } from './image-lightbox'; export type ImageLightboxProps = { image: LightboxImage; viewport?: boolean; onClose: () => void; }; export declare function ImageLightbox(props: ImageLightboxProps): import("solid-js").JSX.Element;