/** * Returns `true` if `n` is an exact power of 2, i.e. if there exists an * integer `k` such that `n === 2^k`. * * @param n */ declare function isExactPowerOf2(n: number): boolean; export { isExactPowerOf2 };