import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../../client'; import type { ExchangesDepositsSync, ExchangesDepositsSyncData, ExchangesDepositsSyncPatch, ExchangesDepositsSyncQuery, ExchangesDepositsSyncService } from './sync.class'; export type { ExchangesDepositsSync, ExchangesDepositsSyncData, ExchangesDepositsSyncPatch, ExchangesDepositsSyncQuery }; export type ExchangesDepositsSyncClientService = Pick>, (typeof exchangesDepositsSyncMethods)[number]>; export declare const exchangesDepositsSyncPath = "exchanges/deposits/sync"; export declare const exchangesDepositsSyncMethods: Array; export declare const exchangesDepositsSyncClient: (client: ClientApplication) => void; declare module '../../../../client' { interface ServiceTypes { [exchangesDepositsSyncPath]: ExchangesDepositsSyncClientService; } }