import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { StrategiesTemplates, StrategiesTemplatesData, StrategiesTemplatesPatch, StrategiesTemplatesQuery, StrategiesTemplatesService } from './templates.class'; export type { StrategiesTemplates, StrategiesTemplatesData, StrategiesTemplatesPatch, StrategiesTemplatesQuery }; export type StrategiesTemplatesClientService = Pick>, (typeof strategiesTemplatesMethods)[number]>; export declare const strategiesTemplatesPath = "strategies/templates"; export declare const strategiesTemplatesMethods: readonly ['find', 'get', 'create', 'update', 'patch', 'remove']; export declare const strategiesTemplatesClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [strategiesTemplatesPath]: StrategiesTemplatesClientService; } }