export declare namespace TypeValue { type Boolean = 'boolean'; type Number = 'number'; type String = 'string'; type Symbol = 'symbol'; type Object = 'object'; type Undefined = 'undefined'; type Function = 'function'; type Primitive = String | Number | Boolean; type Any = Primitive | Symbol | Undefined | Function; }