/**
 * Check if value is close to target.
 */
declare function isNear(val: number, target: number, threshold: number): boolean;
export default isNear;
