import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Trades, TradesData, TradesPatch, TradesQuery, TradesService } from './trades.class'; export type { Trades, TradesData, TradesPatch, TradesQuery }; export type TradesClientService = Pick>, (typeof tradesMethods)[number]>; export declare const tradesPath = "trades"; export declare const tradesMethods: Array; export declare const tradesClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [tradesPath]: TradesClientService; } }