/** * Formats large numbers into a compact, human-friendly form: 1k, 1.5k, 2M, etc. */ export declare const humanize: (n: number) => string;