export type TGetStrWithThousandSeparatorArgs = Parameters; export type TGetStrWithThousandSeparatorReturn = ReturnType; /** * Gets a formatted string with thousands separators in the integer part of a number. * * @param {number} num Source number * @param {string} [separator=" "] Separator to insert between each group of three digits * @returns {string} Formatted string * @example * getStrWithThousandSeparator(1000000, ","); // "1,000,000" * @example * // Format a dashboard counter with narrow no-break spaces * const views = getStrWithThousandSeparator(1_250_000, "\u202f"); */ export declare const getStrWithThousandSeparator: (num: number, separator?: string) => string;