import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../../client'; import type { TradersPodsEvents, TradersPodsEventsData, TradersPodsEventsPatch, TradersPodsEventsQuery, TradersPodsEventsService } from './events.class'; export type { TradersPodsEvents, TradersPodsEventsData, TradersPodsEventsPatch, TradersPodsEventsQuery }; export type TradersPodsEventsClientService = Pick>, (typeof tradersPodsEventsMethods)[number]>; export declare const tradersPodsEventsPath = "traders/pods/events"; export declare const tradersPodsEventsMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const tradersPodsEventsClient: (client: ClientApplication) => void; declare module '../../../../client' { interface ServiceTypes { [tradersPodsEventsPath]: TradersPodsEventsClientService; } }