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