declare const JAVASCRIPT_TYPES: { readonly ARRAY: "array"; readonly BOOLEAN: "boolean"; readonly BUFFER: "buffer"; readonly DATE: "date"; readonly ERROR: "error"; readonly FUNCTION: "function"; readonly GENERATOR: "generator"; readonly GENERATORFUNCTION: "generatorfunction"; readonly HYBRID: "hybrid"; readonly MAP: "map"; readonly NULL: "null"; readonly NUMBER: "number"; readonly OBJECT: "object"; readonly PROMISE: "promise"; readonly REGEXP: "regexp"; readonly SET: "set"; readonly STREAM: "stream"; readonly STRING: "string"; readonly SYMBOL: "symbol"; readonly UNDEFINED: "undefined"; readonly WEAKMAP: "weakmap"; readonly WEAKSET: "weakset"; }; type JavascriptType = typeof JAVASCRIPT_TYPES[keyof typeof JAVASCRIPT_TYPES]; export { JAVASCRIPT_TYPES, type JavascriptType };