/**
 * @module validator.number
 */
/**
 * @param arg argument will be tested if it is integer or not.
 * @param signs
 */
export declare function isInteger(arg: number | string, signs?: '+-' | '+' | '-'): boolean;
