import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { InsightsCryptoStressIndex, InsightsCryptoStressIndexData, InsightsCryptoStressIndexPatch, InsightsCryptoStressIndexQuery, InsightsCryptoStressIndexService } from './crypto-stress-index.class'; export type { InsightsCryptoStressIndex, InsightsCryptoStressIndexData, InsightsCryptoStressIndexPatch, InsightsCryptoStressIndexQuery }; export type InsightsCryptoStressIndexClientService = Pick>, (typeof insightsCryptoStressIndexMethods)[number]>; export declare const insightsCryptoStressIndexPath = "insights/crypto-stress-index"; export declare const insightsCryptoStressIndexMethods: Array; export declare const insightsCryptoStressIndexClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [insightsCryptoStressIndexPath]: InsightsCryptoStressIndexClientService; } }