import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { TradersPods, TradersPodsData, TradersPodsPatch, TradersPodsQuery, TradersPodsService } from './pods.class'; export type { TradersPods, TradersPodsData, TradersPodsPatch, TradersPodsQuery }; export type TradersPodsClientService = Pick>, (typeof tradersPodsMethods)[number]>; export declare const tradersPodsPath = "traders/pods"; export declare const tradersPodsMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const tradersPodsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [tradersPodsPath]: TradersPodsClientService; } }