import type { InstantSearchServerState } from '../components/InstantSearchSSRProvider'; import type { InternalInstantSearch } from './useInstantSearchApi'; import type { UiState } from 'instantsearch.js'; import type { MutableRefObject } from 'react'; export type InstantSearchSSRContextApi = InstantSearchServerState & { ssrSearchRef: MutableRefObject | null>; }; export declare const InstantSearchSSRContext: import("react").Context> | null>;