/**
 * Check if value is an integer
 */
declare function isInteger(val: any): boolean;
export default isInteger;
