import type { InitialResults, UiState } from 'instantsearch.js'; import type { ReactNode } from 'react'; export type InstantSearchServerState = { initialResults: InitialResults; }; export type InstantSearchSSRProviderProps = Partial & { children?: ReactNode; }; /** * Provider to pass the server state retrieved from `getServerState()` to * . */ export declare function InstantSearchSSRProvider({ children, ...props }: InstantSearchSSRProviderProps): JSX.Element;