/** * Wraps the given angle to the range [-PI, PI] * @param a the angle in radians * @return the given angle wrapped to the range [-PI, PI] */ declare function wrapAngleAroundZero(a: number): number; export default wrapAngleAroundZero;