/** * Replace number.toFixed with Math.round */ export declare function toFixed(number: number, precision: number): string; /** * Convert number to non-scientific notation */ export declare function toSafeString(number: number | string): string;