/** * synap agents — manage named agent identities * * synap agents list list all configured agent identities * synap agents add add a named agent identity (legacy — use create for new agents) * synap agents create create a new agent on the pod with template support * synap agents remove remove an agent identity * synap agents info show details for an agent identity * synap agents rotate-key rotate the API key for an agent */ export declare function agentsList(opts?: { json?: boolean; }): void; export declare function agentsAdd(opts?: { name?: string; apiKey?: string; pod?: string; workspace?: string; label?: string; }): Promise; export declare function agentsRemove(name: string): void; export declare function agentsInfo(name: string): void; export declare function agentsCreate(opts?: { template?: string; name?: string; type?: string; role?: string; workspace?: string; pod?: string; }): Promise; export declare function agentsRotateKey(nameOrId: string): Promise;