/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * Normalization of the CLI's usage payloads into the public `UsageInfo` / * `SessionCreditsUsage` shapes. * * Shared by both account-level query paths — the per-Query control plane and * the daemon query plane — because they talk to the same CLI endpoints and * must not drift in which fields they accept. */ import type { SessionCreditsUsage, UsageInfo } from '../protocol/common.js'; export declare function normalizeSessionCreditsUsage(value: unknown): SessionCreditsUsage | undefined; export declare function normalizeUsageInfo(value: unknown): UsageInfo | null;