/**
 * Checks if the given input is a number
 */
declare const isNumber: (x: any) => boolean;
export default isNumber;
