import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { StrategiesHyperopt, StrategiesHyperoptData, StrategiesHyperoptPatch, StrategiesHyperoptQuery, StrategiesHyperoptService } from './hyperopt.class'; export type { StrategiesHyperopt, StrategiesHyperoptData, StrategiesHyperoptPatch, StrategiesHyperoptQuery }; export type StrategiesHyperoptClientService = Pick>, (typeof strategiesHyperoptMethods)[number]>; export declare const strategiesHyperoptPath = "strategies/hyperopt"; export declare const strategiesHyperoptMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const strategiesHyperoptClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [strategiesHyperoptPath]: StrategiesHyperoptClientService; } }