/** * Formats number according to locale. * * @param number * @param locale */ declare const numberFormatter: (number: string | number, locale?: string) => string; export default numberFormatter;