import { ServiceResponse } from '../response/response.interface' export interface IAgentListService { getNativeAgentList( params: Record ): Promise> getNativeAgentConfiguration( agentId: string ): Promise> saveNativeAgentConfiguration( params: SaveAgentConfigurationType ): Promise> getToolList(): Promise> }