/** * Calculates the dot product of two number's. */ declare function dot(a: number[], b: number[]): number; export default dot;