import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { ExchangesTransactions, ExchangesTransactionsData, ExchangesTransactionsPatch, ExchangesTransactionsQuery, ExchangesTransactionsService } from './transactions.class'; export type { ExchangesTransactions, ExchangesTransactionsData, ExchangesTransactionsPatch, ExchangesTransactionsQuery }; export type ExchangesTransactionsClientService = Pick>, (typeof exchangesTransactionsMethods)[number]>; export declare const exchangesTransactionsPath = "exchanges/transactions"; export declare const exchangesTransactionsMethods: Array; export declare const exchangesTransactionsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [exchangesTransactionsPath]: ExchangesTransactionsClientService; } }