import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { StrategiesGenerate, StrategiesGenerateData, StrategiesGeneratePatch, StrategiesGenerateQuery, StrategiesGenerateService } from './generate.class'; export type { StrategiesGenerate, StrategiesGenerateData, StrategiesGeneratePatch, StrategiesGenerateQuery }; export type StrategiesGenerateClientService = Pick>, (typeof strategiesGenerateMethods)[number]>; export declare const strategiesGeneratePath = "strategies/generate"; export declare const strategiesGenerateMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const strategiesGenerateClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [strategiesGeneratePath]: StrategiesGenerateClientService; } }