import type { ModelInfo, PortkeyPricingResponse } from './types.js'; /** * Convert Portkey pricing (cents per token) to ModelInfo (USD per 1M tokens) * Formula: cents_per_token * 10 = usd_per_1M_tokens */ export declare function convertPortkeyToModelInfo(portkey: PortkeyPricingResponse): ModelInfo;