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