/**
 * 数字三位小数点
 * https://stackoverflow.com/questions/6784894/add-commas-or-spaces-to-group-every-three-digits
 */
declare const commafy: (num: number) => string;
export default commafy;
