import type { OpenClawConfig } from "../config/types.js"; import type { RuntimeEnv } from "../runtime.js"; import { type CommandSecretResolutionMode } from "./command-secret-gateway.js"; export declare function resolveCommandConfigWithSecrets(params: { config: TConfig; commandName: string; targetIds: Set; mode?: CommandSecretResolutionMode; allowedPaths?: Set; runtime?: RuntimeEnv; autoEnable?: boolean; env?: NodeJS.ProcessEnv; }): Promise<{ resolvedConfig: TConfig; effectiveConfig: TConfig; diagnostics: string[]; }>;