/** * Find the greatest common divisor(GCD) of `a` and `b`. * * @returns The sign is ignored, it always returns the positive gcd of `a` and `b`. */ export declare const gcd: (a: bigint, b: bigint) => bigint; //# sourceMappingURL=gcd.d.ts.map