import type { ArrayVector4D } from "./types.js";
/**
 * Calculates the magnitude (length) of a 4D vector.
 * @param {ArrayVector4D} xyzw - Vector as `[x, y, z, w]`
 * @returns {number} The magnitude
 */
export declare const magnitude4D: (xyzw: ArrayVector4D) => number;
