/**
 * Tests to see if the specified value is an odd integer
 *
 * @param input The number to test
 * @returns true if the number is an odd integer
 */
export declare function isOdd(input: number): boolean;
export default isOdd;
