import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { StrategiesIndicators, StrategiesIndicatorsData, StrategiesIndicatorsPatch, StrategiesIndicatorsQuery, StrategiesIndicatorsService } from './indicators.class'; export type { StrategiesIndicators, StrategiesIndicatorsData, StrategiesIndicatorsPatch, StrategiesIndicatorsQuery }; export type StrategiesIndicatorsClientService = Pick>, (typeof strategiesIndicatorsMethods)[number]>; export declare const strategiesIndicatorsPath = "strategies/indicators"; export declare const strategiesIndicatorsMethods: readonly ['find', 'get', 'create', 'update', 'patch', 'remove']; export declare const strategiesIndicatorsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [strategiesIndicatorsPath]: StrategiesIndicatorsClientService; } }