export declare function isExactlyRepresentableAsBinaryFraction(raw: string): boolean;
export declare function isExactlyRepresentableIntegerDivision(leftValue: number, rightValue: number): boolean;
export declare function greatestCommonDivisor(left: bigint, right: bigint): bigint;
export declare function isPowerOfTwo(value: bigint): boolean;
