/** * Returns `true` if the value is a bigint primitive. * @param value The value to check. * * @example * ```typescript * isBigIntPrimitive(0n); // => true * isBigIntPrimitive(1n); // => true * isBigIntPrimitive(''); // => false * ``` */ declare const isBigIntPrimitive: (value: unknown) => value is bigint; export default isBigIntPrimitive; //# sourceMappingURL=isBigIntPrimitive.d.ts.map