import Decimal from "decimal.js"; export declare function display(value: Decimal): string; export declare function abbrNumber(value: Decimal, digits?: number, showSign?: boolean): string; /** * Format a Decimal as a percentage with exactly 2 decimal places (truncated). * * When padding is true (default), always shows 2 decimal places (e.g. "12.30"). * When false, trailing zeros are trimmed (e.g. "12.3"). */ export declare function displayPct(value: Decimal, padding?: boolean): string; export declare function toBaseUnits(value: Decimal, decimals: number): bigint | null; //# sourceMappingURL=decimal.d.ts.map