import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Exchanges, ExchangesData, ExchangesPatch, ExchangesQuery, ExchangesService } from './exchanges.class'; export type { Exchanges, ExchangesData, ExchangesPatch, ExchangesQuery }; export type ExchangesClientService = Pick>, (typeof exchangesMethods)[number]>; export declare const exchangesPath = "exchanges"; export declare const exchangesMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const exchangesClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [exchangesPath]: ExchangesClientService; } }