import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { AgentsSessions, AgentsSessionsData, AgentsSessionsPatch, AgentsSessionsQuery, AgentsSessionsService } from './sessions.class'; export type { AgentsSessions, AgentsSessionsData, AgentsSessionsPatch, AgentsSessionsQuery }; export type AgentsSessionsClientService = Pick>, (typeof agentsSessionsMethods)[number]>; export declare const agentsSessionsPath = "agents/sessions"; export declare const agentsSessionsMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const agentsSessionsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [agentsSessionsPath]: AgentsSessionsClientService; } }