import type { NativeGesture, NativeGestureNativeProperties, NativeHandlerData, } from '../hooks/gestures/native/NativeTypes'; import type { CommonGestureConfig, ExternalRelations, GestureCallbacks, } from '.'; export type WrapperSpecificProperties = { ref?: React.Ref | undefined; onGestureUpdate_CAN_CAUSE_INFINITE_RERENDER?: ( gesture: NativeGesture ) => void; }; export type NativeWrapperProperties = CommonGestureConfig & GestureCallbacks & NativeGestureNativeProperties & ExternalRelations & WrapperSpecificProperties;