/** * Copyright (c) JOB TODAY S.A. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import React from "react"; import { Dimensions as DimensionsType, ImageSource } from "../../@types"; declare type Props = { imageSrc: ImageSource; onRequestClose: () => void; onZoom: (isZoomed: boolean) => void; onLoadEnd: () => void; onLoadStart: () => void; onLongPress: (image: ImageSource) => void; delayLongPress: number; swipeToCloseEnabled?: boolean; doubleTapToZoomEnabled?: boolean; SCREEN: DimensionsType; onLoad: () => void; }; declare const _default: React.MemoExoticComponent<({ imageSrc, onLoadEnd, onLoadStart, onZoom, onRequestClose, onLongPress, delayLongPress, swipeToCloseEnabled, doubleTapToZoomEnabled, SCREEN, }: Props) => JSX.Element>; export default _default;