declare enum JsTypes {
    String = "string",
    Number = "number",
    Boolean = "boolean",
    Undefined = "undefined",
    Null = "null",
    Symbol = "symbol",
    Object = "object",
    Function = "function"
}
export { JsTypes };
//# sourceMappingURL=JSTypes.d.ts.map