/**
 * IsInteger checks if value passed through is an integer, returning a true or false
 * @param value is the input passed through the IsInteger function
 * @returns Function will return true if value is an integer, false otherwise
 */
declare function IsInteger(value: any): boolean;
export { IsInteger };
