import { AnyAtomTemplate, Ecosystem } from '@zedux/atoms';
import React from 'react';
export declare const ecosystemContext: React.Context<string>;
/**
 * These are copied from packages/atoms/src/utils/general.ts
 *
 * IMPORTANT: keep these in-sync with the ones in the atoms package
 */
export declare const Explicit = 1;
export declare const External = 2;
export declare const Static = 4;
export declare const destroyed: unique symbol;
export declare const getReactContext: (ecosystem: Ecosystem, atom: AnyAtomTemplate<"any">) => React.Context<any>;
