import type { AgentInstallPlan, AgentInstallResult, CloudConfig, SupportedHarnessInstallTarget } from "../types.js"; export declare const SUPPORTED_AGENT_INSTALL_TARGETS: readonly SupportedHarnessInstallTarget[]; export declare function buildAgentInstallPlan(config: CloudConfig): AgentInstallPlan | undefined; export declare function installAgents(config: CloudConfig, options?: { readonly cwd?: string; readonly execute?: boolean; }): Promise;