import { type BundledCatalogModelInput, type ResolveBundledCatalogModelOptions } from "./resolveBundledCatalogModel.js"; import type { ResolveProfileInputCoreOptions } from "./resolveProfileInputCore.js"; import type { ResolvedAIProfile } from "./types.js"; export type ResolveBundledInput = BundledCatalogModelInput; export interface ResolveBundledInputOptions extends ResolveProfileInputCoreOptions, ResolveBundledCatalogModelOptions { } /** * Unified sync bundled resolver. * * **Resolution order:** * 1. **Profile + choice** — known `profile/choice` in registry → bundled registry (requires `catalogLane`). * 2. **Concrete model** — vendor slug, gateway wire id, or `{ provider, modelId }` → bundled catalog. */ export declare function resolveBundledInput(input: ResolveBundledInput, options: ResolveBundledInputOptions): ResolvedAIProfile; //# sourceMappingURL=resolveBundledInput.d.ts.map