import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Agents, AgentsData, AgentsPatch, AgentsQuery, AgentsService } from './agents.class'; export type { Agents, AgentsData, AgentsPatch, AgentsQuery }; export type AgentsClientService = Pick>, (typeof agentsMethods)[number]>; export declare const agentsPath = "agents"; export declare const agentsMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const agentsClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [agentsPath]: AgentsClientService; } }