/** * Returns the tag of the value (`Symbol.toStringTag` is omitted to get the raw tag). * @param value The value to get the tag of. * * @example * ```typescript * getTag({}); // => 'Object' * getTag([]); // => 'Array' * getTag(() => {}); // => 'Function' * getTag(async () => {}); // => 'AsyncFunction' * getTag(42); // => 'Number' * getTag(null); // => 'Null' * getTag(undefined); // => 'Undefined' * ``` */ declare const getTag: (value: unknown) => string; export default getTag; //# sourceMappingURL=_getTag.d.ts.map