import { StrapiImage } from "graphql/operations-types"; import { Dispatch, SetStateAction } from "react"; import Img, { ImageQuality } from "./Img"; import Popup from "./Popup"; export type LightBoxProps = { setState: | Dispatch> | Dispatch>; state: boolean; image?: StrapiImage; }; export default function LightBox(props: LightBoxProps): JSX.Element { return ( ); }