import React, { PropsWithChildren } from 'react'; import { GestureProviderProps, ScreensRefsHolder } from './types'; export const GHContext = React.createContext( (props: PropsWithChildren) => <>{props.children}, ); export const RNSScreensRefContext = React.createContext | null>(null);