import { Locale } from "./types/locale"; import { NumberFormat } from "./types/numberFormat"; import { NumberFormatIntl } from "./types/numberFormatIntl"; export declare function formatNumber(value: number, options?: Partial, locale?: Locale): string; export declare function formatNumber(value: number, options?: NumberFormatIntl): string;