/** * Single source of truth for model pricing (per 1M tokens). * Used by agent loop, proxy server, stats tracker, and router. */ export declare const MODEL_PRICING: Record; /** Opus pricing for savings calculations — tracks the current flagship. */ export declare const OPUS_PRICING: { input: number; output: number; perCall?: number; }; /** * Estimate cost in USD for a request. * Falls back to $2/$10 per 1M for unknown models. * For per-call models (perCall > 0), uses flat per-call pricing instead of per-token. */ export declare function estimateCost(model: string, inputTokens: number, outputTokens: number, calls?: number): number;