import React from 'react'; import type { Vector } from '@shopify/react-native-skia'; import type { GestureStateChangeEvent, GestureUpdateEvent, PanGestureHandlerEventPayload } from 'react-native-gesture-handler'; export type TouchableHandlerContextType = { value: Record) => void; onActive: (touchInfo: GestureUpdateEvent) => void; onEnd: (touchInfo: GestureStateChangeEvent) => void; isPointInPath: (point: Vector) => boolean; }>; }; declare const TouchHandlerContext: React.Context; declare const useTouchHandlerContext: () => TouchableHandlerContextType; export { TouchHandlerContext, useTouchHandlerContext }; //# sourceMappingURL=context.d.ts.map