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 { TradersPodsEvents, TradersPodsEventsData, TradersPodsEventsPatch, TradersPodsEventsQuery } from './events.schema'; export type { TradersPodsEvents, TradersPodsEventsData, TradersPodsEventsPatch, TradersPodsEventsQuery }; export interface TradersPodsEventsParams extends MongoDBAdapterParams { } export declare class TradersPodsEventsService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;