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