/** * 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 { ScrollView, NativeTouchEvent, NativeSyntheticEvent } from "react-native"; import { Dimensions } from "../@types"; /** * This is iOS only. * Same functionality for Android implemented inside usePanResponder hook. */ declare function useDoubleTapToZoom(scrollViewRef: React.RefObject, scaled: boolean, screen: Dimensions): (event: NativeSyntheticEvent) => void; export default useDoubleTapToZoom;