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