import type { AgentCommandArgs } from "../types.js"; export interface AgentCommandOptions { workspace?: string; configDir?: string; sessionId?: string; local?: boolean; gatewayUrl?: string; token?: string; password?: string; } /** * Execute the agent command * This is the handler for: wingman agent --agent */ export declare function executeAgentCommand(args: AgentCommandArgs, options?: AgentCommandOptions): Promise;