import { Msg } from 'nats';
export declare class NatsMessageRequest {
    private message;
    private readonly jsonCodec;
    constructor(message: Msg);
    get data(): {
        cmd: string;
        payload: any;
    };
    get subject(): string;
    respond(payload: any): boolean;
}
