import { RemoveAgentResponse } from '../../../../../zoo-message-ts/src/api/agents/types.ts'; import { Token } from '../../../../../zoo-message-ts/src/api/general/types.ts'; export type RemoveAgentInput = Token & { nodeAddress: string; agentId: string; }; export type RemoveAgentOutput = RemoveAgentResponse;