/** * Returns the least non-negative residue of `a` modulo `m`. */ declare function bMod(a: bigint, m: bigint): bigint; export { bMod };