/**
 * Negates the components of a vec2.
 */
declare function negate(out: number[], a: number[]): number[];

export = negate;
