import { createContext } from 'react'; import type { Gesture } from 'react-native-gesture-handler/lib/typescript/handlers/gestures/gesture'; import type { GestureHandlersHookType } from '../types'; export interface BottomSheetGestureHandlersContextType { contentPanGestureHandler: ReturnType; handlePanGestureHandler: ReturnType; } export const BottomSheetGestureHandlersContext = createContext(null); export const BottomSheetDraggableContext = createContext(null);