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>;
