/** * kibi quota */ import { Command } from 'commander'; import type { ChainQuota } from '../types.js'; export declare const QUOTA_HEADERS: string[]; /** * Build the quota table rows. Exported so the tests exercise the real row builder * rather than a copy of its logic. * * The Balance column is the caller's trading-wallet balance ON THAT CHAIN, already * formatted by the server (e.g. "0.004000 ETH"). It matters most for Robinhood: RH is * a separate L2 whose native token is also ETH, `/balance/wallet` has no RH breakout, * and so this row is the ONLY place a user can see their spendable Robinhood ETH. */ export declare function buildQuotaRows(chains: ChainQuota[]): string[][]; export declare function registerQuota(program: Command): void;