export type TypeofResult = 'string' | 'number' | 'boolean' | 'bigint' | 'symbol' | 'object' | 'array' | 'function' | 'date' | 'regexp' | 'set' | 'map' | 'weakmap' | 'weakset' | 'error' | 'promise' | 'uint8array' | 'uint16array' | 'uint32array' | 'int8array' | 'int16array' | 'int32array' | 'arraybuffer' | 'null' | 'undefined'; export declare function _typeof(ele: any): TypeofResult;