/** * Returns whether or not the vectors have approximately the same elements in the same position.. */ declare function equals(a: number[], b: number[]): boolean; export default equals;