export declare function isNumber(value: any): value is number; export declare function isNumeric(value: any): boolean; export declare function isInt(value: any): boolean; declare global { interface NumberConstructor { isNumber: typeof isNumber; isNumeric: typeof isNumeric; isInt: typeof isInt; } }