import type { EventBusConfig } from './types.js'; /** * Environment variable name that controls enabled event transports. * Example: INTEGRATIONS_TRANSPORTS=logger,posthog */ export declare const INTEGRATIONS_TRANSPORTS_ENV = "INTEGRATIONS_TRANSPORTS"; /** * Resolve configuration for EventBus from environment variables. * Falls back to ["logger"] when the variable is absent or empty. */ export declare function resolveEventBusConfig(env?: NodeJS.ProcessEnv): EventBusConfig; //# sourceMappingURL=config.d.ts.map