import type { AgentConfig, RuntimeLaunchBinding, ServerConfig } from "./types.js"; export type RuntimeLaunchBindingClaimOutcome = { status: "claimed"; binding: RuntimeLaunchBinding; } | { status: "missing"; } | { status: "unreachable"; message: string; } | { status: "skipped"; reason: string; }; export declare function claimRuntimeLaunchBindingDetailed(agentConfig: AgentConfig, serverConfig: ServerConfig): Promise; export declare function claimRuntimeLaunchBinding(agentConfig: AgentConfig, serverConfig: ServerConfig): Promise;