import type { ArrayVector3D } from "./types.js";
/**
 * Calculates the magnitude of a 3D vector.
 * @param {ArrayVector3D} xyz - Vector as `[x, y, z]`
 * @returns {number} Magnitude of the vector
 */
export declare const magnitude3D: (xyz: ArrayVector3D) => number;
