export declare const percentAdd: (x: bigint, percent: bigint) => bigint; export declare const percentSub: (x: bigint, percent: bigint) => bigint; export declare const percentMul: (x: bigint, other: bigint) => bigint; export declare const percentMulUp: (x: bigint, other: bigint) => bigint; export declare const percentMulDown: (x: bigint, other: bigint) => bigint; export declare const percentDiv: (x: bigint, other: bigint) => bigint; export declare const percentDivUp: (x: bigint, other: bigint) => bigint; export declare const percentDivDown: (x: bigint, other: bigint) => bigint; export declare const percentAvg: (x: bigint, other: bigint, percent: bigint) => bigint; export declare const percentPow: (x: bigint, exponent: bigint) => bigint; export declare const percentPowUp: (x: bigint, exponent: bigint) => bigint; export declare const percentPowDown: (x: bigint, exponent: bigint) => bigint; export declare const percentExpTaylorN: (x: bigint, N: bigint) => bigint; export declare const percentSqrt: (x: bigint) => bigint; export declare const percentSqrtUp: (x: bigint) => bigint; export declare const percentSqrtDown: (x: bigint) => bigint; export declare const percentToDecimals: (x: bigint, decimals: number) => bigint; export declare const percentToRay: (x: bigint) => bigint; export declare const percentToWad: (x: bigint) => bigint; export declare const formatPercent: (x: bigint, digits?: number) => string; export declare const toPercentFloat: (x: bigint) => number;