import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { AgentsPrepare, AgentsPrepareData, AgentsPreparePatch, AgentsPrepareQuery, AgentsPrepareService } from './prepare.class'; export type { AgentsPrepare, AgentsPrepareData, AgentsPreparePatch, AgentsPrepareQuery }; export type AgentsPrepareClientService = Pick>, (typeof agentsPrepareMethods)[number]>; export declare const agentsPreparePath = "agents/prepare"; export declare const agentsPrepareMethods: readonly ['create']; export declare const agentsPrepareClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [agentsPreparePath]: AgentsPrepareClientService; } }