declare global { /** * Returns `true` if the value is classified as a bigint primitive or object. * @param value The value to check. * * @example * ```typescript * isBigInt(0n); // => true * isBigInt(1n); // => true * isBigInt(Object(BigInt(1))); // => true * isBigInt(''); // => false * ``` */ function isBigInt(value: unknown): value is bigint | BigInt; } export {}; //# sourceMappingURL=isBigInt.d.ts.map