/**
 * Returns random bit (0 or 1)
 */
declare function randomBit(): 1 | 0;
export default randomBit;
