export declare enum Rounding { Ceil = 0, Floor = 1 } export declare function mulDiv(a: bigint, b: bigint, x: bigint, rounding?: Rounding): bigint;