import { PricingForModel } from "./pricing-types"; /** * Flat fake price applied to every model served by a local provider (Ollama, LMStudio). * * Local providers have no real per-token cost, but using $0 would make tracked rows * aggregate to zero and disappear from totals. $0.10 / 1M tokens is a deliberate * memorable constant (0.1 across input, cache and output) so usage is summable * without pretending to model a specific cloud rate. */ export declare const LOCAL_FLAT_PRICE_PER_1M_TOKENS = 0.1; export declare function getLocalPricing(modelName: string): PricingForModel;