import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Events, EventsData, EventsPatch, EventsQuery, EventsService } from './events.class'; export type { Events, EventsData, EventsPatch, EventsQuery }; export type EventsClientService = Pick>, (typeof eventsMethods)[number]>; export declare const eventsPath = "events"; export declare const eventsMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const eventsClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [eventsPath]: EventsClientService; } }