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