import type { GestureStateChangeEvent, GestureUpdateEvent, PanGestureHandlerEventPayload } from 'react-native-gesture-handler'; type UseGestureHandlerParams = { onStart?: (touchInfo: GestureStateChangeEvent) => void; onActive?: (touchInfo: GestureUpdateEvent) => void; onEnd?: (touchInfo: GestureStateChangeEvent) => void; }; declare const useGestureHandler: (gestureHandlers: UseGestureHandlerParams) => { onStart: (touchInfo: GestureStateChangeEvent) => void; onActive: (extendedTouchInfo: GestureUpdateEvent) => void; onEnd: (extendedTouchInfo: GestureStateChangeEvent) => void; }; export { useGestureHandler }; //# sourceMappingURL=use-gesture-handler.d.ts.map