import * as zjson from "../zjson"; import { TypeDefs, ZedContext } from "./context"; import { Type } from "./types/types"; export declare class DecodeStream { private context; typedefs: TypeDefs; constructor(context: ZedContext); decode(object: zjson.Object): import(".").Value; decodeType(obj: zjson.Type): Type; buildType(obj: zjson.Type): Type; }