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