import { createContext } from 'react'; import type { InstantSearchServerState } from '../components/InstantSearchSSRProvider'; export const InstantSearchSSRContext = createContext | null>(null); if (__DEV__) { InstantSearchSSRContext.displayName = 'InstantSearchSSR'; }