import type { CloudCommandOptions as AgentCommandOptions } from "./_lib/cloud-options.js"; export type { AgentCommandOptions }; export declare function agentListCommand(options?: AgentCommandOptions): Promise; export declare function agentGetCommand(agentId: string, options?: AgentCommandOptions): Promise; export declare function agentCreateCommand(agentId: string, options?: AgentCommandOptions & { name?: string; description?: string; }): Promise; export declare function agentUpdateCommand(agentId: string, options?: AgentCommandOptions & { name?: string; description?: string; }): Promise; export declare function agentDeleteCommand(agentId: string, options?: AgentCommandOptions & { yes?: boolean; }): Promise; export declare function agentConfigGetCommand(agentId: string, options?: AgentCommandOptions & { output?: string; }): Promise; export declare function agentConfigPatchCommand(agentId: string, options: AgentCommandOptions & { file: string; json?: boolean; }): Promise; interface AgentScaffoldOptions { cwd?: string; name?: string; description?: string; } /** Scaffold a new local agent dir + print the `defineAgent` block to add. */ export declare function agentScaffoldCommand(agentId: string, options?: AgentScaffoldOptions): Promise; //# sourceMappingURL=agent.d.ts.map