import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Objectives, ObjectivesData, ObjectivesPatch, ObjectivesQuery, ObjectivesService } from './objectives.class'; export type { Objectives, ObjectivesData, ObjectivesPatch, ObjectivesQuery }; export type ObjectivesClientService = Pick>, (typeof objectivesMethods)[number]>; export declare const objectivesPath = "objectives"; export declare const objectivesMethods: Array; export declare const objectivesClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [objectivesPath]: ObjectivesClientService; } }