import { OnApplicationBootstrap, OnModuleInit } from '@nestjs/common'; import { InteractionComponentService } from './interaction-component.service'; import { Telegraf } from 'telegraf'; import { ExplorerService } from '../nestgram-explorer.service'; import { InteractionComponentDiscovery } from './interaction-component.discovery'; export declare class InteractionComponentModule implements OnModuleInit, OnApplicationBootstrap { private readonly client; private readonly explorerService; private readonly interactionComponentService; constructor(client: Telegraf, explorerService: ExplorerService, interactionComponentService: InteractionComponentService); onModuleInit(): void; onApplicationBootstrap(): void; }