/** * Compact USD — keeps sub-cent prices honest ($0.435/M must not round to * $0.44). Exported for tests. */ export declare function money(n: number): string; /** * 1000000 → 1M, 1048576 → 1M, 1050000 → 1.1M, 262144 → 262K. * Both 1000000 and 1048576 are "1M context" to a reader — don't render one as * `1M` and the other as `1.0M` in the same column. Exported for tests. */ export declare function formatContext(n: number | undefined): string; export declare function modelsCommand(): Promise;