import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { InsightsFearAndGreed, InsightsFearAndGreedData, InsightsFearAndGreedPatch, InsightsFearAndGreedQuery, InsightsFearAndGreedService } from './fear-and-greed.class'; export type { InsightsFearAndGreed, InsightsFearAndGreedData, InsightsFearAndGreedPatch, InsightsFearAndGreedQuery }; export type InsightsFearAndGreedClientService = Pick>, (typeof insightsFearAndGreedMethods)[number]>; export declare const insightsFearAndGreedPath = "insights/fear-and-greed"; export declare const insightsFearAndGreedMethods: Array; export declare const insightsFearAndGreedClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [insightsFearAndGreedPath]: InsightsFearAndGreedClientService; } }