export declare const BIT_32_MASK = 4294967295; /** * Performs 32 bit left shift on a single number. * @param a * @param b * @returns */ export declare const Bit32ShiftLeft: (a: number, b: number) => import("faunadb").Expr; /** * Performs right bit shift on 32 bits. * @param a * @param b * @returns */ export declare const Bit32ShiftRight: (a: number, b: number) => import("faunadb").Expr;