import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Insights, InsightsData, InsightsPatch, InsightsQuery, InsightsService } from './insights.class'; export type { Insights, InsightsData, InsightsPatch, InsightsQuery }; export type InsightsClientService = Pick>, (typeof insightsMethods)[number]>; export declare const insightsPath = "insights"; export declare const insightsMethods: Array; export declare const insightsClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [insightsPath]: InsightsClientService; } }