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