import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { ExchangesDeposits, ExchangesDepositsData, ExchangesDepositsPatch, ExchangesDepositsQuery, ExchangesDepositsService } from './deposits.class'; export type { ExchangesDeposits, ExchangesDepositsData, ExchangesDepositsPatch, ExchangesDepositsQuery }; export type ExchangesDepositsClientService = Pick>, (typeof exchangesDepositsMethods)[number]>; export declare const exchangesDepositsPath = "exchanges/deposits"; export declare const exchangesDepositsMethods: Array; export declare const exchangesDepositsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [exchangesDepositsPath]: ExchangesDepositsClientService; } }