/** * Convert a number to readable string using fixed-point notation. * formatNum(1/3, 2, true) => 33.33% * formatNum(1/3 * 1e5, 2) => 33,333.33 */ export declare const formatNum: (value: number, digits?: number, isPercent?: boolean) => string;