import * as React from "react"; import type { CommonImageProps, ZoomProps, GifProps } from "./image-info-area"; type Props = CommonImageProps & ZoomProps & GifProps; export default function ExploreImageModalContent({ backgroundImage, scale: contentScale, caption, alt, longDescription, linterContext, apiOptions, box, labels, range, zoomSize, }: Props): React.JSX.Element | null; export {};