import { Req } from "./action/req/Req";
import { RespOk } from "./action/resp/RespOk";
export declare class JsonCodec {
    fromJson(json: string): Req;
    toJson(resp: RespOk): string;
}
