/** * Pricing config domain, user-set manual model prices. * * `pricing.modelPrices` is a record keyed `provider:model`, each entry USD * per 1M tokens. A manual price ALWAYS outranks provider-served and catalog * pricing in the model pricing resolver (providers/model-pricing.ts), the * owner's negotiated or self-hosted rate is the truth for that deployment. * The value is read live on every resolution, so edits apply with no * restart. An empty record means no manual prices: models resolve from * provider/catalog sources or land on honest UNKNOWN, never $0. */ import type { ConfigSetting } from './schema-types.js'; export declare const pricingConfigDefaults: { pricing: { modelPrices: {}; }; }; export declare const pricingConfigSettings: ConfigSetting[]; //# sourceMappingURL=schema-domain-pricing.d.ts.map