import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Traders, TradersData, TradersPatch, TradersQuery, TradersService } from './traders.class'; export type { Traders, TradersData, TradersPatch, TradersQuery }; export type TradersClientService = Pick>, (typeof tradersMethods)[number]>; export declare const tradersPath = "traders"; export declare const tradersMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const tradersClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [tradersPath]: TradersClientService; } }