/** * 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 * ``` */ declare const isBigInt: (value: unknown) => value is bigint | BigInt; export default isBigInt; //# sourceMappingURL=isBigInt.d.ts.map