import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { ExchangesBalance, ExchangesBalanceData, ExchangesBalancePatch, ExchangesBalanceQuery, ExchangesBalanceService } from './balance.class'; export type { ExchangesBalance, ExchangesBalanceData, ExchangesBalancePatch, ExchangesBalanceQuery }; export type ExchangesBalanceClientService = Pick>, (typeof exchangesBalanceMethods)[number]>; export declare const exchangesBalancePath = "exchanges/balance"; export declare const exchangesBalanceMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const exchangesBalanceClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [exchangesBalancePath]: ExchangesBalanceClientService; } }