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