import React from 'react'; import './index.css'; export type LightBoxProps = { currentSlide?: number; callback?: any; mediaItems: any; toggler: boolean; parentShowPrev?: any; parentShowNext?: any; togglerFunc?: any; }; export default function LightBox(props: LightBoxProps): React.JSX.Element;