export declare const MAXIMUM_FRACTION_DIGITS = 2; /** * Parses the mana value with the supplied amount of decimals. It uses MAXIMUM_FRACTION_DIGITS as a default (recommended). * It'll return the value as is if it's an invalid number or it doesn't have more than decimals than the upper limit. */ export declare function toFixedMANAValue(strValue: string, maximumFractionDigits?: number): string; /** * Returns the amount of trailing zeros */ export declare function getTrailingZeros(strValue: string): number;