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 { ExchangesBalance, ExchangesBalanceData, ExchangesBalancePatch, ExchangesBalanceQuery } from './balance.schema'; export type { ExchangesBalance, ExchangesBalanceData, ExchangesBalancePatch, ExchangesBalanceQuery }; export interface ExchangesBalanceParams extends MongoDBAdapterParams { user?: any; } export declare class ExchangesBalanceService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;