/**
 * Limit the magnitude of this vector to the value used for the max parameter.
 */
declare function limit(out: number[], a: number[], max: number): number[];

export = limit;
