import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { InsightsGlobal, InsightsGlobalData, InsightsGlobalPatch, InsightsGlobalQuery, InsightsGlobalService } from './global.class'; export type { InsightsGlobal, InsightsGlobalData, InsightsGlobalPatch, InsightsGlobalQuery }; export type InsightsGlobalClientService = Pick>, (typeof insightsGlobalMethods)[number]>; export declare const insightsGlobalPath = "insights/global"; export declare const insightsGlobalMethods: Array; export declare const insightsGlobalClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [insightsGlobalPath]: InsightsGlobalClientService; } }