import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { ExchangesLedger, ExchangesLedgerData, ExchangesLedgerPatch, ExchangesLedgerQuery, ExchangesLedgerService } from './ledger.class'; export type { ExchangesLedger, ExchangesLedgerData, ExchangesLedgerPatch, ExchangesLedgerQuery }; export type ExchangesLedgerClientService = Pick>, (typeof exchangesLedgerMethods)[number]>; export declare const exchangesLedgerPath = "exchanges/ledger"; export declare const exchangesLedgerMethods: Array; export declare const exchangesLedgerClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [exchangesLedgerPath]: ExchangesLedgerClientService; } }