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