import { OnApplicationBootstrap, OnModuleInit } from '@nestjs/common'; import { TextCommandsService } from './text-commands.service'; import { ExplorerService } from '../nestgram-explorer.service'; import { TextCommandDiscovery } from './text-commands.discovery'; import { Telegraf } from 'telegraf'; export declare class TextCommandsModule implements OnModuleInit, OnApplicationBootstrap { private readonly explorerService; private readonly textCommandsService; private readonly client; constructor(explorerService: ExplorerService, textCommandsService: TextCommandsService, client: Telegraf); onModuleInit(): void; onApplicationBootstrap(): void; }