export interface AgentIdentityView { id: string; name: string; status: string; serviceUserId?: string | null; roleId?: string | null; orgNodeId?: string | null; } export declare function assignAgentIdentityRemote(options: { targetOrg?: string; agentId: string; serviceUserId?: string | null; }): Promise; export declare function publishAgentRemote(options: { targetOrg?: string; agentId: string; overrideTestGate?: boolean; }): Promise; export declare function archiveAgentRemote(options: { targetOrg?: string; agentId: string; }): Promise; export declare function rollbackAgentVersionRemote(options: { targetOrg?: string; agentId: string; versionId: string; }): Promise | null>;