import { Bit } from '../types'; /** * Sets the value of a specific bit. * @example bitwise.integer.set(128, 7, 0) => 0 * @param {Integer} int32 input number * @param {Integer} position bit’s position * @param {Integer} value bit’s new value * @returns {Integer} resulting number */ declare const _default: (int32: number, position: number, value: Bit) => Bit; export default _default;