/** * Resolve agent config directory from --path option, env vars, or defaults. */ import type { AgentCli } from "axshared"; /** * Resolve the config directory for an agent. * * Priority: * 1. Provided path (--path option) * 2. Agent's environment variable * 3. Agent's default config directory * * Delegates to axshared's resolveAgentConfigDirectory, which is the canonical * source of truth for agent path resolution. * * @param agentId - The agent to resolve config for * @param providedPath - Optional path from --path option * @returns The resolved config directory path */ declare function resolveConfigPath(agentId: AgentCli, providedPath?: string): string; export { resolveConfigPath };