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 { ExchangesLedgerSync, ExchangesLedgerSyncData, ExchangesLedgerSyncPatch, ExchangesLedgerSyncQuery } from './sync.schema'; export type { ExchangesLedgerSync, ExchangesLedgerSyncData, ExchangesLedgerSyncPatch, ExchangesLedgerSyncQuery }; export interface ExchangesLedgerSyncParams extends MongoDBAdapterParams { } export declare class ExchangesLedgerSyncService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;