/** * Returns the mean of two 2d points. * @param ps the two points */ declare function mean(ps: [number[], number[]]): number[]; export { mean };