ResponseEcho: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ResponseEcho;
    encode(message: ResponseEcho, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ResponseEchoAmino): ResponseEcho;
    fromAminoMsg(object: ResponseEchoAminoMsg): ResponseEcho;
    fromPartial(object: {
        message?: string;
    }): ResponseEcho;
    fromProtoMsg(message: ResponseEchoProtoMsg): ResponseEcho;
    toAmino(message: ResponseEcho): ResponseEchoAmino;
    toProto(message: ResponseEcho): Uint8Array;
    toProtoMsg(message: ResponseEcho): ResponseEchoProtoMsg;
}