import * as zjson from "../../zjson"; import { DecodeStream } from "../decode-stream"; import { TypeValue } from "../values/type-value"; import { BasePrimitive } from "./base-primitive"; export declare class TypeOfType extends BasePrimitive { name: string; create(value: zjson.Type | null, stream: DecodeStream): TypeValue; } export declare const TypeType: TypeOfType;