/** * Get the angle between two 3D vectors. */ declare function angle(a: number[], b: number[]): number; export default angle;