export declare enum Type { MISSING = 0, OBJECT = 1, ARRAY = 2, NUMBER = 3, STRING = 4, BOOLEAN = 5, NULL = 6 } export declare const nameOfType: (type: Type) => string; export declare const of: (value: any) => Type;