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 { AgentsSessions, AgentsSessionsData, AgentsSessionsPatch, AgentsSessionsQuery } from './sessions.schema'; export type { AgentsSessions, AgentsSessionsData, AgentsSessionsPatch, AgentsSessionsQuery }; export interface AgentsSessionsParams extends MongoDBAdapterParams { user?: any; } export declare class AgentsSessionsService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;