import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { StrategiesFollow, StrategiesFollowData, StrategiesFollowPatch, StrategiesFollowQuery, StrategiesFollowService } from './follow.class'; export type { StrategiesFollow, StrategiesFollowData, StrategiesFollowPatch, StrategiesFollowQuery }; export type StrategiesFollowClientService = Pick>, (typeof strategiesFollowMethods)[number]>; export declare const strategiesFollowPath = "strategies/follow"; export declare const strategiesFollowMethods: Array; export declare const strategiesFollowClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [strategiesFollowPath]: StrategiesFollowClientService; } }