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