import { BaseAPIRequestFactory } from './baseapi.js'; import { Configuration } from '../configuration.js'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http.js'; import { AgentCreateDTO } from '../models/AgentCreateDTO.js'; import { AgentDetailsDTO } from '../models/AgentDetailsDTO.js'; import { AgentItemForNameDTO } from '../models/AgentItemForNameDTO.js'; import { AgentQueryDTO } from '../models/AgentQueryDTO.js'; import { AgentSummaryDTO } from '../models/AgentSummaryDTO.js'; import { AgentUpdateDTO } from '../models/AgentUpdateDTO.js'; export declare class AgentApiRequestFactory extends BaseAPIRequestFactory { batchSearchAgentDetails(agentQueryDTO: Array, _options?: Configuration): Promise; batchSearchAgentSummary(agentQueryDTO: Array, _options?: Configuration): Promise; cloneAgent(agentId: number, _options?: Configuration): Promise; cloneAgents(requestBody: Array, _options?: Configuration): Promise; countAgents(agentQueryDTO: AgentQueryDTO, _options?: Configuration): Promise; createAgent(agentCreateDTO: AgentCreateDTO, _options?: Configuration): Promise; createAgents(agentCreateDTO: Array, _options?: Configuration): Promise; deleteAgent(agentId: number, _options?: Configuration): Promise; deleteAgents(requestBody: Array, _options?: Configuration): Promise; getAgentDetails(agentId: number, _options?: Configuration): Promise; getAgentSummary(agentId: number, _options?: Configuration): Promise; listAgentVersionsByName(name: string, _options?: Configuration): Promise; publishAgent(agentId: number, visibility: string, _options?: Configuration): Promise; searchAgentDetails(agentQueryDTO: AgentQueryDTO, _options?: Configuration): Promise; searchAgentSummary(agentQueryDTO: AgentQueryDTO, _options?: Configuration): Promise; updateAgent(agentId: number, agentUpdateDTO: AgentUpdateDTO, _options?: Configuration): Promise; } export declare class AgentApiResponseProcessor { batchSearchAgentDetailsWithHttpInfo(response: ResponseContext): Promise>>>; batchSearchAgentSummaryWithHttpInfo(response: ResponseContext): Promise>>>; cloneAgentWithHttpInfo(response: ResponseContext): Promise>; cloneAgentsWithHttpInfo(response: ResponseContext): Promise>>; countAgentsWithHttpInfo(response: ResponseContext): Promise>; createAgentWithHttpInfo(response: ResponseContext): Promise>; createAgentsWithHttpInfo(response: ResponseContext): Promise>>; deleteAgentWithHttpInfo(response: ResponseContext): Promise>; deleteAgentsWithHttpInfo(response: ResponseContext): Promise>>; getAgentDetailsWithHttpInfo(response: ResponseContext): Promise>; getAgentSummaryWithHttpInfo(response: ResponseContext): Promise>; listAgentVersionsByNameWithHttpInfo(response: ResponseContext): Promise>>; publishAgentWithHttpInfo(response: ResponseContext): Promise>; searchAgentDetailsWithHttpInfo(response: ResponseContext): Promise>>; searchAgentSummaryWithHttpInfo(response: ResponseContext): Promise>>; updateAgentWithHttpInfo(response: ResponseContext): Promise>; }