/** * Rotates a vector by an angle */ declare function rotate(out: number[], a: number[], angle: number): number[]; export = rotate;