UNPKG

react-instantsearch-core

Version:
9 lines (8 loc) 395 B
import type { PromiseWithState } from './wrapPromiseWithState'; import type { RefObject } from 'react'; export type InstantSearchRSCContextApi = { waitForResultsRef: RefObject<PromiseWithState<void> | null> | null; countRef: RefObject<number>; ignoreMultipleHooksWarning: boolean; }; export declare const InstantSearchRSCContext: import("react").Context<InstantSearchRSCContextApi>;