/** * Returns the cross product signed magnitude between two 2-vectors. * @param a the first vector * @param b the second vector */ declare function cross(a: number[], b: number[]): number; export { cross };