import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; import type { DeleteAgentSkillParams, DeleteAgentSkillsParams, EngineAgentSkill, EngineAgentSkillServiceCreateAgentSkillBody, EngineAgentSkillServiceCreateAgentSkillsBody, EngineAgentSkillServicePatchAgentSkillBody, EngineAgentSkillServicePatchAgentSkillsBody, EngineAgentSkillServiceUpdateAgentSkillBody, EngineCreateAgentSkillsResponse, EngineListAgentSkill, EngineListSkill, ReadAgentSkillParams, SearchAgentSkillParams, SearchLookupAgentNotExistsSkillParams } from '../_models'; export declare const // --- title start getAgentSkillService: (axiosInstance?: AxiosInstance) => { deleteAgentSkills: (agentId: string, params?: DeleteAgentSkillsParams, options?: AxiosRequestConfig) => Promise>; searchAgentSkill: (agentId: string, params?: SearchAgentSkillParams, options?: AxiosRequestConfig) => Promise>; patchAgentSkills: (agentId: string, engineAgentSkillServicePatchAgentSkillsBody: EngineAgentSkillServicePatchAgentSkillsBody, options?: AxiosRequestConfig) => Promise>; createAgentSkill: (agentId: string, engineAgentSkillServiceCreateAgentSkillBody: EngineAgentSkillServiceCreateAgentSkillBody, options?: AxiosRequestConfig) => Promise>; createAgentSkills: (agentId: string, engineAgentSkillServiceCreateAgentSkillsBody: EngineAgentSkillServiceCreateAgentSkillsBody, options?: AxiosRequestConfig) => Promise>; deleteAgentSkill: (agentId: string, id: string, params?: DeleteAgentSkillParams, options?: AxiosRequestConfig) => Promise>; readAgentSkill: (agentId: string, id: string, params?: ReadAgentSkillParams, options?: AxiosRequestConfig) => Promise>; patchAgentSkill: (agentId: string, id: string, engineAgentSkillServicePatchAgentSkillBody: EngineAgentSkillServicePatchAgentSkillBody, options?: AxiosRequestConfig) => Promise>; updateAgentSkill: (agentId: string, id: string, engineAgentSkillServiceUpdateAgentSkillBody: EngineAgentSkillServiceUpdateAgentSkillBody, options?: AxiosRequestConfig) => Promise>; searchLookupAgentNotExistsSkill: (agentId: string, params?: SearchLookupAgentNotExistsSkillParams, options?: AxiosRequestConfig) => Promise>; }; export type DeleteAgentSkillsResult = AxiosResponse; export type SearchAgentSkillResult = AxiosResponse; export type PatchAgentSkillsResult = AxiosResponse; export type CreateAgentSkillResult = AxiosResponse; export type CreateAgentSkillsResult = AxiosResponse; export type DeleteAgentSkillResult = AxiosResponse; export type ReadAgentSkillResult = AxiosResponse; export type PatchAgentSkillResult = AxiosResponse; export type UpdateAgentSkillResult = AxiosResponse; export type SearchLookupAgentNotExistsSkillResult = AxiosResponse;