import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Strategies, StrategiesData, StrategiesPatch, StrategiesQuery, StrategiesService } from './strategies.class'; export type { Strategies, StrategiesData, StrategiesPatch, StrategiesQuery }; export type StrategiesClientService = Pick>, (typeof strategiesMethods)[number]>; export declare const strategiesPath = "strategies"; export declare const strategiesMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const strategiesClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [strategiesPath]: StrategiesClientService; } }