/** * @license * Copyright 2026 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import type { ModelPricing } from "@workglow/ai"; /** * Public list pricing for Anthropic Claude models (USD per 1M tokens). * * No card carries a long-context tier, and that is not an omission: the * 1M-context models bill a long prompt at these same rates, and every other * model here has a 200K window, so no prompt size could select one. */ export declare const ANTHROPIC_PRICING: Record; /** * Resolve list pricing for an Anthropic Claude model id. */ export declare function getAnthropicModelPricing(modelId: string | undefined): ModelPricing | undefined;