/** * Help you to know if a variable is a number * @param {number | any} variable variable that you want to know if it's a number * @returns {boolean} If it's a number it will returns a true otherwise return false */ declare const isNumber: (variable: number | any) => boolean; export { isNumber };