import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { InsightsEtfFlow, InsightsEtfFlowData, InsightsEtfFlowPatch, InsightsEtfFlowQuery, InsightsEtfFlowService } from './etf-flow.class'; export type { InsightsEtfFlow, InsightsEtfFlowData, InsightsEtfFlowPatch, InsightsEtfFlowQuery }; export type InsightsEtfFlowClientService = Pick>, (typeof insightsEtfFlowMethods)[number]>; export declare const insightsEtfFlowPath = "insights/etf-flow"; export declare const insightsEtfFlowMethods: Array; export declare const insightsEtfFlowClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [insightsEtfFlowPath]: InsightsEtfFlowClientService; } }