/** * Returns the Manhattan length of the given 2-vector. * @param p a vector */ declare function manhattanLength(p: number[]): number; export { manhattanLength };