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 { Markets, MarketsData, MarketsPatch, MarketsQuery } from './markets.schema'; export type { Markets, MarketsData, MarketsPatch, MarketsQuery }; export interface MarketsParams extends MongoDBAdapterParams { } export declare class MarketsService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;