import type { ArrayVector3D } from "./types.js";
/**
 * Checks if a 3D vector is zero.
 * @param {ArrayVector3D} xyz - Vector as `[x, y, z]`
 * @returns {boolean} `true` if the vector is zero, `false` otherwise
 */
export declare const isZero3D: (xyz: ArrayVector3D) => boolean;
