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