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 { ExchangesLedger, ExchangesLedgerData, ExchangesLedgerPatch, ExchangesLedgerQuery } from './ledger.schema'; export type { ExchangesLedger, ExchangesLedgerData, ExchangesLedgerPatch, ExchangesLedgerQuery }; export interface ExchangesLedgerParams extends MongoDBAdapterParams { } export declare class ExchangesLedgerService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;