/** * This function checks if any value is a number, returning true or false * @param value: value is the input passed through the IsNumber function * @returns Function will return true if value is an integer, false otherwise */ declare function IsNumber(value: any): boolean; export { IsNumber };