export declare function displayFormattedString(input: string): string; export declare function displayWithDecimals(value: number, decimals: number): string; export declare function display(value: number): string; export declare function toDecimalValue(value: bigint, decimals: number): number; /** * Format a number 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: number, padding?: boolean): string; export declare function fromDecimalValue(value: number, decimals: number): bigint; //# sourceMappingURL=num.d.ts.map