import * as zjson from './zjson'; import { Type } from './types/types'; import { Value } from './values/types'; export declare class EncodeStream { private id; private map; encode(value: Value): zjson.Obj; encodeType(type: Type): zjson.Type; encodeValue(value: Value | null): zjson.Value; private hasSeen; private getId; }