import type { Params } from '@feathersjs/feathers'; import type { MongoDBAdapterOptions, MongoDBAdapterParams } from '@feathersjs/mongodb'; import { MongoDBService } from '@feathersjs/mongodb'; import type { Application } from '../../declarations'; import type { Agents, AgentsData, AgentsPatch, AgentsQuery } from './agents.schema'; export type { Agents, AgentsData, AgentsPatch, AgentsQuery }; export interface AgentsParams extends MongoDBAdapterParams { user?: any; } export declare class AgentsService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;