/** * Customer-scoped billing ECM calls. * Uses the authenticated customer principal — no customerId needed. */ import type { ApiClient } from './client.js'; import type { BillingResponse } from './types.js'; export declare function getBilling(client: ApiClient, offset?: number): Promise; export declare function getHostsBilling(client: ApiClient, offset?: number): Promise;