/** * Returns true if the value is zero. * @param tolerance represent an upper bound below which the value is considered zero. */ declare function isZero(value: number, tolerance: number): boolean; export default isZero;