import { Ecosystem } from '../classes/Ecosystem'; import { stack } from '../classes/EvaluationStack'; import { StackItem } from '../utils/index'; export declare let internalStore: import("@zedux/core").Store>>; export declare const getEcosystem: (id: string) => Ecosystem | undefined; export declare const getInternals: () => { stack: StackItem[]; store: import("@zedux/core").Store>>; }; /** * Used in child windows. Makes different instances of Zedux reuse the parent * window's internal store and evaluation stack. */ export declare const setInternals: (internals: { stack: StackItem[]; store: typeof internalStore; }) => void; export declare const wipe: () => void;