import { Ecosystem } from '../classes/Ecosystem.js';
import { EcosystemConfig } from '../types/index.js';
export declare const createEcosystem: <Context extends Record<string, any> | undefined = any>(config?: EcosystemConfig<Context>) => Ecosystem<any> | Ecosystem<Context>;
