import type { Params } from '@feathersjs/feathers'; import type { MongoDBAdapterOptions, MongoDBAdapterParams } from '@feathersjs/mongodb'; import { MemoryService } from '@feathersjs/memory'; import { MongoDBService } from '@feathersjs/mongodb'; import type { Application } from '../../declarations'; import type { Traders, TradersData, TradersPatch, TradersQuery } from './traders.schema'; export type { Traders, TradersData, TradersPatch, TradersQuery }; export interface TradersParams extends MongoDBAdapterParams { user?: any; skipPopulate?: boolean; } export interface TradersParamsMemory { } export declare class TradersService extends MongoDBService { } export declare class TradersServiceMemory extends MemoryService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions; export declare const getOptionsMemory: (app: Application) => any;