/**
 * Get index of the least significant set bit
 * Also known as ctz32 or "count trailing zeroes"
 * @see https://graphics.stanford.edu/~seander/bithacks.html
 * @param {number} v
 * @returns {number}
 */
export function lsb_32(v: number): number;
//# sourceMappingURL=lsb_32.d.ts.map