import type { BotConfig } from "./types.js"; export declare function collectConfigRuntimeEnvVars(cfg?: BotConfig): Record; export declare function collectConfigServiceEnvVars(cfg?: BotConfig): Record; /** @deprecated Use `collectConfigRuntimeEnvVars` or `collectConfigServiceEnvVars`. */ export declare function collectConfigEnvVars(cfg?: BotConfig): Record; export declare function applyConfigEnvVars(cfg: BotConfig, env?: NodeJS.ProcessEnv): void;