import * as React from 'react'; import { PanGestureHandler as PanGestureHandlerNative, PanGestureHandlerProperties, } from 'react-native-gesture-handler'; import GestureHandlerRefContext from '../utils/GestureHandlerRefContext'; export function PanGestureHandler(props: PanGestureHandlerProperties) { const gestureRef = React.useRef(null); return ( ); } export type { PanGestureHandlerGestureEvent } from 'react-native-gesture-handler'; export { GestureHandlerRootView, State as GestureState, } from 'react-native-gesture-handler';