import type { Application } from '../../declarations'; import { ObjectivesService } from './objectives.class'; import { objectivesPath } from './objectives.shared'; export * from './objectives.class'; export * from './objectives.schema'; export declare const objectives: (app: Application) => void; declare module '../../declarations' { interface ServiceTypes { [objectivesPath]: ObjectivesService; } }