export declare class Formatter { /** * Beautify a number to a more readable comma-separated string representation. * * @param number The number to beautify. * @returns The more readable string representation. */ static beautifyNumber(number: number | string, beautifyRight?: boolean): string; static limitStringLength(str: string): string; }