/** * Formats a number or numeric string with commas according to the specified locale. */ export declare function formatNumberWithCommas(input: number | string, locale?: string, options?: Intl.NumberFormatOptions): string;