import { BaseRpcContext } from './base-rpc.context'; declare type RmqContextArgs = [Record, any, string]; export declare class RmqContext extends BaseRpcContext { constructor(args: RmqContextArgs); /** * Returns the original message (with properties, fields, and content). */ getMessage(): Record; /** * Returns the reference to the original RMQ channel. */ getChannelRef(): any; /** * Returns the name of the pattern. */ getPattern(): string; } export {};