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 { ExchangesTransactionsSync, ExchangesTransactionsSyncData, ExchangesTransactionsSyncPatch, ExchangesTransactionsSyncQuery } from './sync.schema'; export type { ExchangesTransactionsSync, ExchangesTransactionsSyncData, ExchangesTransactionsSyncPatch, ExchangesTransactionsSyncQuery }; export interface ExchangesTransactionsSyncParams extends MongoDBAdapterParams { } export declare class ExchangesTransactionsSyncService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;