export type HumanizeNumberOptions = { /** * @example 1000 => 1,000 * @default "," */ delimiter?: string; /** * @example 1.1 * @default "." */ separator?: string; }; export declare function humanizeNumber(n: number, options?: HumanizeNumberOptions): string;