import { ContextType, ExecutionContext } from '@nestjs/common'; import { ExecutionContextHost } from '@nestjs/core/helpers/execution-context-host'; import { ITelegramArgumentsHost } from './telegram-arguments-host.interface'; export type TelegramContextType = 'telegram' | ContextType; export declare class TelegramExecutionContext extends ExecutionContextHost implements ITelegramArgumentsHost { static create(context: ExecutionContext): TelegramExecutionContext; getType(): T; getContext(): T; getNext(): T; }