/** * Return whether a number is half. * * @param value - The number to test. * * @returns Whether the number is half. */ export declare function isHalf(value: number): boolean;