import type { Params } from '@feathersjs/feathers'; import type { MongoDBAdapterOptions, MongoDBAdapterParams } from '@feathersjs/mongodb'; import { MongoDBService } from '@feathersjs/mongodb'; import type { Application } from '../../declarations'; type Marketplaces = any; type MarketplacesData = any; type MarketplacesPatch = any; type MarketplacesQuery = any; export type { Marketplaces, MarketplacesData, MarketplacesPatch, MarketplacesQuery }; export interface MarketplacesParams extends MongoDBAdapterParams { } export declare class MarketplacesService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;