/// import type { InstantSearch, UiState } from 'instantsearch.js'; export type InstantSearchServerContextApi = { /** * Fowards search internals to the server execution context to access them * in `getServerState()`. */ notifyServer: (params: { search: InstantSearch; }) => void; }; export declare const InstantSearchServerContext: import("react").Context | null>;