/**
* Check if a value is numeric.
* Strings like `"123"` are considered numbers.
* Note that `Infinity` is not a number.
*
* @param value value to check
* @returns `true` if `obj` is a numeric value
*/exportdeclarefunctionisNumeric(value: any): value is number | string;