//#region src/client/react-instance.d.ts
/**
 * Return the React instance registered by the vinext browser entry.
 *
 * Module Federation remotes can call this with their local React namespace to
 * reuse the host instance. The first browser registration wins so evaluating
 * another copy of this module (for example after HMR) cannot replace it.
 * Server and RSC environments always keep their condition-specific React
 * instance local.
 */
declare function getVinextReact(reactInstance: typeof import("react")): typeof import("react");
//#endregion
export { getVinextReact };