//#region src/is-bigint.d.ts /** * Checks if `value` is classified as a `bigint` object. * * @example * ```typescript * isDate(37n) * // => true * * isBigInt(37) * // => false * ``` * * @param value - The obj to check. * @returns Returns `true` if `value` is a bigint object, else `false`. */ declare const isBigInt: (value: unknown) => value is bigint; //#endregion export { isBigInt }; //# sourceMappingURL=is-bigint.d.mts.map