import type { ArrayVector3D } from "./types.js";
/**
 * Checks if two 3D vectors are equal.
 * @param {ArrayVector3D} xyz1 - First vector as `[x, y, z]`
 * @param {ArrayVector3D} xyz2 - Second vector as `[x, y, z]`
 * @returns {ArrayVector3D} `true` if the vectors are equal, `false` otherwise
 */
export declare const isEqual3D: (xyz1: ArrayVector3D, xyz2: ArrayVector3D) => boolean;
