export declare function IEVersion(): -1 | 9 | 10 | 7 | 8 | 6 | 12 | 11; declare const formatUtils: { /** * 每三位数字用逗号分隔 * @param num 实际数值(number类型)(支持小于0的值) * @param digits 小数位位数,默认值:2,即保留两位小数(值范围:0~20),或者保留小数位范围[最小小数位,最大小数位] * @param sp 每隔几位数进行逗号分隔,默认值:3,即千分位逗号分隔 * @param defaultValue 当值不存在的情况下显示的默认值,默认为空字符串 * @param zeroFilling 当小数值不够保留位数时,是否自动补0,默认true * @returns {*} */ formatNumber(num: any, digits: number | number[], sp: number, _defaultValue?: number | string, zeroFilling?: boolean): any; formatMoney(money: any): any; formatDate(date: any, format: string): any; parseAntDate(value: any): any; parseAntDateWithFormat(value: any, format: string): any; formatAntDate(date: Date | string): string; formatUnitTA(value: number | string): string; formatMoneyCN(value: number | string): string; formatMoneyPeopleCN(value: number | string): string; formatMoneyDayCN(value: number | string): string; formatMoneyEN(value: number | string): string; formatRatio(value: number | string): string; formatText(value: number | string, unit: string, pos?: 'right' | 'left' | undefined): string; formatBooleanToString: (obj: any, formatPropertiesArray: string[]) => any; formatDateTime: (time: number | Date, fmt: string) => string; formatSmartTime: (time: number | Date) => string; format2ShowTime: (format: string) => false | { showHour: boolean; showMinute: boolean; showSecond: boolean; }; }; export default formatUtils;