import type { ArrayVector4D } from "./types.js";
/**
 * Performs linear interpolation between two 4D vectors.
 * @param {ArrayVector4D} xyzw1 - First vector as `[x, y, z, w]`
 * @param {ArrayVector4D} xyzw2 - Second vector as `[x, y, z, w]`
 * @param {number} t - Interpolation parameter
 * @returns {ArrayVector4D} The interpolated vector
 */
export declare const lerp4D: (xyzw1: ArrayVector4D, xyzw2: ArrayVector4D, t: number) => ArrayVector4D;
