import type { AgentConfig, RuntimeLaunchBinding, ServerConfig } from "./types.js"; export declare function resolveAcodeDataHome(): string; export declare class ConfigManager { private agentConfig; private serverConfig; loadConfig(): void; applyRuntimeLaunchBinding(binding: RuntimeLaunchBinding): void; private parseRuntimeTokenRefreshInterval; private parsePositiveIntegerEnv; updateRuntimeAccessToken(newToken: string): boolean; getAgentConfig(): AgentConfig; getServerConfig(): ServerConfig; } export declare const configManager: ConfigManager;