import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../../client'; import type { ExchangesTransactionsSync, ExchangesTransactionsSyncData, ExchangesTransactionsSyncPatch, ExchangesTransactionsSyncQuery, ExchangesTransactionsSyncService } from './sync.class'; export type { ExchangesTransactionsSync, ExchangesTransactionsSyncData, ExchangesTransactionsSyncPatch, ExchangesTransactionsSyncQuery }; export type ExchangesTransactionsSyncClientService = Pick>, (typeof exchangesTransactionsSyncMethods)[number]>; export declare const exchangesTransactionsSyncPath = "exchanges/transactions/sync"; export declare const exchangesTransactionsSyncMethods: Array; export declare const exchangesTransactionsSyncClient: (client: ClientApplication) => void; declare module '../../../../client' { interface ServiceTypes { [exchangesTransactionsSyncPath]: ExchangesTransactionsSyncClientService; } }