import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../../client'; import type { ExchangesLedgerSync, ExchangesLedgerSyncData, ExchangesLedgerSyncPatch, ExchangesLedgerSyncQuery, ExchangesLedgerSyncService } from './sync.class'; export type { ExchangesLedgerSync, ExchangesLedgerSyncData, ExchangesLedgerSyncPatch, ExchangesLedgerSyncQuery }; export type ExchangesLedgerSyncClientService = Pick>, (typeof exchangesLedgerSyncMethods)[number]>; export declare const exchangesLedgerSyncPath = "exchanges/ledger/sync"; export declare const exchangesLedgerSyncMethods: Array; export declare const exchangesLedgerSyncClient: (client: ClientApplication) => void; declare module '../../../../client' { interface ServiceTypes { [exchangesLedgerSyncPath]: ExchangesLedgerSyncClientService; } }