import { BaseRpcContext } from '@nestjs/microservices/ctx-host/base-rpc.context'; declare type SqsContextArgs = [string, string, string] | [string]; export declare class SqsContext extends BaseRpcContext { constructor(args: SqsContextArgs); getPattern(): string; getQueue(): string; getTopic(): string; } export {};